]> andersk Git - gssapi-openssh.git/blobdiff - openssh/audit.c
Quotes and white space cleanup.
[gssapi-openssh.git] / openssh / audit.c
index bb386d852a648577e38f0c5f41153959c51f1c70..688cea54abb6c62ffdb0472f05d68b2ecf08d978 100644 (file)
 
 #include "includes.h"
 
-#include <stdarg.h>
-#include <string.h>
-
 #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);
 }
 
 /*
This page took 0.059728 seconds and 4 git commands to generate.