From: Hallvard Furuseth Date: Sun, 14 Mar 1999 07:15:58 +0000 (+0000) Subject: Add missing parens around Debug macro parameter X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~381 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7927ffe7f352c746868b9179154808c129cd76cd;p=openldap Add missing parens around Debug macro parameter --- diff --git a/include/ldap_log.h b/include/ldap_log.h index 3a33843206..8761eb38cf 100644 --- a/include/ldap_log.h +++ b/include/ldap_log.h @@ -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 */