diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-10-02 17:40:09 -0400 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-10-02 17:40:09 -0400 |
commit | c1165f822cd9f8c3467b5f825ce933ab8374b361 (patch) | |
tree | b986e9e6ead9693bdd4785f52ea7e6503bbf92bc /Makefile.am | |
parent | cad45ba11ec3572296361f53f5852ffb97a97fa3 (diff) |
audit: turn the audit fd into a static variable
As audit is pretty much just a special kind of logging we should treat
it similar, and manage the audit fd in a static variable.
This simplifies the audit fd sharing with the SELinux access checking
code quite a bit.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 031e1ac27d..6836851921 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1020,7 +1020,9 @@ libsystemd_core_la_SOURCES = \ src/core/killall.h \ src/core/killall.c \ src/core/syscall-list.c \ - src/core/syscall-list.h + src/core/syscall-list.h \ + src/core/audit-fd.c \ + src/core/audit-fd.h nodist_libsystemd_core_la_SOURCES = \ src/core/load-fragment-gperf.c \ |