diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-11 01:43:23 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-11 01:44:38 +0200 |
commit | 4927fcae48de061393b3ce9c12d49f80d73fbf1d (patch) | |
tree | 4034f6843ab1ed8ca8e3d9acf87897a9fd592c5e /src/missing.h | |
parent | b95cf3629e8d78a0d28e71b0f5559fa9a8c038b5 (diff) |
audit,utmp: implement audit logic and rip utmp stuff out of the main daemon and into a helper binary
Diffstat (limited to 'src/missing.h')
-rw-r--r-- | src/missing.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/missing.h b/src/missing.h index 5914b01a8e..d6114cc2b2 100644 --- a/src/missing.h +++ b/src/missing.h @@ -63,4 +63,12 @@ static inline int pivot_root(const char *new_root, const char *put_old) { /* static void nss_disable_nscd(void) _weakref_(__nss_disable_nscd); */ +#ifndef AUDIT_SERVICE_START +#define AUDIT_SERVICE_START 1130 /* Service (daemon) start */ +#endif + +#ifndef AUDIT_SERVICE_STOP +#define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */ +#endif + #endif |