Add missing parens around Debug macro parameter

This commit is contained in:
Hallvard Furuseth 1999-03-14 07:15:58 +00:00
parent 45f62b42a1
commit 7927ffe7f3

View file

@ -61,7 +61,7 @@ extern int ldap_syslog_level;
{ \
if ( ldap_debug & (level) ) \
fprintf( stderr, (fmt), (arg1), (arg2), (arg3) ); \
if ( ldap_syslog & level ) \
if ( ldap_syslog & (level) ) \
syslog( ldap_syslog_level, (fmt), (arg1), (arg2), (arg3) ); \
}
#else /* LDAP_SYSLOG */