X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/blobdiff_plain/9108f8d92b8e2b4b5fe61eb8e419bf94ba216d44..033af9549c8e22d8cfd355c4fd869ca63936ab66:/openssh/audit.c diff --git a/openssh/audit.c b/openssh/audit.c index bb386d8..688cea5 100644 --- a/openssh/audit.c +++ b/openssh/audit.c @@ -26,15 +26,10 @@ #include "includes.h" -#include -#include - #ifdef SSH_AUDIT_EVENTS #include "audit.h" #include "log.h" -#include "key.h" -#include "hostfile.h" #include "auth.h" /* @@ -125,7 +120,7 @@ void audit_connection_from(const char *host, int port) { debug("audit connection from %s port %d euid %d", host, port, - (int)geteuid()); + (int)geteuid()); } /* @@ -152,7 +147,7 @@ audit_session_open(const char *ttyn) const char *t = ttyn ? ttyn : "(no tty)"; debug("audit session open euid %d user %s tty name %s", geteuid(), - audit_username(), t); + audit_username(), t); } /* @@ -168,7 +163,7 @@ audit_session_close(const char *ttyn) const char *t = ttyn ? ttyn : "(no tty)"; debug("audit session close euid %d user %s tty name %s", geteuid(), - audit_username(), t); + audit_username(), t); } /*