From d10674326b34e2f71a3bb17171e66277bfd1a92b Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 25 May 2011 12:28:39 -0700 Subject: [PATCH] Fix bug #8165 - Inverted WITH_SYSLOG condition in vfs_full_audit.c. Found by freeserif@yahoo.com. Autobuild-User: Jeremy Allison Autobuild-Date: Wed May 25 22:37:23 CEST 2011 on sn-devel-104 --- source3/modules/vfs_full_audit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c index e4d9599e74d..cb03413a537 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 -- 2.11.4.GIT