From: Howard Chu Date: Thu, 11 May 2006 04:30:21 +0000 (+0000) Subject: Fix Debug definition for !LDAP_SYSLOG X-Git-Tag: OPENLDAP_REL_ENG_2_4_1ALPHA~2^2~49 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2769d7fa29aeb428a8cb79dc49c1166b96576590;p=openldap Fix Debug definition for !LDAP_SYSLOG --- diff --git a/include/ldap_log.h b/include/ldap_log.h index 33eac0f87d..f414d45a03 100644 --- a/include/ldap_log.h +++ b/include/ldap_log.h @@ -226,7 +226,7 @@ extern void eb_syslog(int pri, const char *fmt, ...); lutil_debug( ldap_debug, (level), (fmt), (arg1), (arg2), (arg3), (arg4), (arg5) ); \ } while ( 0 ) #define Debug( level, fmt, arg1, arg2, arg3 ) \ - Log3( (level), (fmt), (arg1), (arg2), (arg3) ) + Log3( (level), 0, (fmt), (arg1), (arg2), (arg3) ) #define LogTest(level) ( ldap_debug & (level) ) #endif /* ! LDAP_SYSLOG */ #else /* ! LDAP_DEBUG */