The branch, master has been updated
via d106743 Fix bug #8165 - Inverted WITH_SYSLOG condition in
vfs_full_audit.c.
from 0f80186 Fix numerous missing dependencies in WAF build scripts
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit d10674326b34e2f71a3bb17171e66277bfd1a92b
Author: Jeremy Allison <[email protected]>
Date: Wed May 25 12:28:39 2011 -0700
Fix bug #8165 - Inverted WITH_SYSLOG condition in vfs_full_audit.c.
Found by [email protected].
Autobuild-User: Jeremy Allison <[email protected]>
Autobuild-Date: Wed May 25 22:37:23 CEST 2011 on sn-devel-104
-----------------------------------------------------------------------
Summary of changes:
source3/modules/vfs_full_audit.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c
index e4d9599..cb03413 100644
--- a/source3/modules/vfs_full_audit.c
+++ b/source3/modules/vfs_full_audit.c
@@ -617,7 +617,7 @@ static int smb_full_audit_connect(vfs_handle_struct *handle,
return -1;
}
-#ifndef WITH_SYSLOG
+#ifdef WITH_SYSLOG
openlog("smbd_audit", 0, audit_syslog_facility(handle));
#endif
--
Samba Shared Repository