diff options
Diffstat (limited to '')
-rw-r--r-- | lib/audit_help.c (renamed from libmisc/audit_help.c) | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libmisc/audit_help.c b/lib/audit_help.c index e6c2006..54109f0 100644 --- a/libmisc/audit_help.c +++ b/lib/audit_help.c @@ -21,6 +21,8 @@ #include <libaudit.h> #include <errno.h> #include <stdio.h> + +#include "attr.h" #include "prototypes.h" #include "shadowlog.h" int audit_fd; @@ -54,7 +56,7 @@ void audit_help_open (void) * id - uid or gid that the operation is being performed on. This is used * only when user is NULL. */ -void audit_logger (int type, unused const char *pgname, const char *op, +void audit_logger (int type, MAYBE_UNUSED const char *pgname, const char *op, const char *name, unsigned int id, shadow_audit_result result) { @@ -62,7 +64,7 @@ void audit_logger (int type, unused const char *pgname, const char *op, return; } else { audit_log_acct_message (audit_fd, type, NULL, op, name, id, - NULL, NULL, NULL, (int) result); + NULL, NULL, NULL, result); } } @@ -77,11 +79,11 @@ void audit_logger_message (const char *message, shadow_audit_result result) NULL, /* hostname */ NULL, /* addr */ NULL, /* tty */ - (int) result); + result); } } #else /* WITH_AUDIT */ -extern int errno; /* warning: ANSI C forbids an empty source file */ +extern int ISO_C_forbids_an_empty_translation_unit; #endif /* WITH_AUDIT */ |