summaryrefslogtreecommitdiff
path: root/src/nspawn
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-05-09 18:32:32 -0400
committerColin Walters <walters@verbum.org>2013-05-09 18:37:26 -0400
commite13e1fad8b231e187bd5de3ce668411bdcd3ac1a (patch)
treee447c72aee0c67bb3925706e7fca45c749196fe2 /src/nspawn
parentc15602af5efd0cf8d30c6ad8161e0442acb5dce2 (diff)
Fix previous commit for !HAVE_AUDIT
Diffstat (limited to 'src/nspawn')
-rw-r--r--src/nspawn/nspawn.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c
index b91b0b8a9..33153c950 100644
--- a/src/nspawn/nspawn.c
+++ b/src/nspawn/nspawn.c
@@ -1220,6 +1220,7 @@ finish:
}
static bool audit_enabled(void) {
+#ifdef HAVE_AUDIT
int fd;
fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_AUDIT);
@@ -1227,7 +1228,7 @@ static bool audit_enabled(void) {
close_nointr_nofail(fd);
return true;
}
-
+#endif
return false;
}