mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 21:50:49 -05:00
Add missing parens around Debug macro parameter
This commit is contained in:
parent
45f62b42a1
commit
7927ffe7f3
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue