From 8b2e6a177f94d6c258ef6d1b730ff3977bb6fe20 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 (cherry picked from commit d10674326b34e2f71a3bb17171e66277bfd1a92b) --- source3/modules/vfs_full_audit.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c index a723a0c..2d6f986 100644 --- a/source3/modules/vfs_full_audit.c +++ b/source3/modules/vfs_full_audit.c @@ -615,7 +615,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 -- 1.7.3.1