From: Kurt Zeilenga Date: Mon, 21 Jun 1999 22:33:35 +0000 (+0000) Subject: Always implement Debug as lutil_debug(). X-Git-Tag: OPENLDAP_REL_ENG_2_BP~253 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=977292a96728bd1b51fcc29472f7317ebf274a0f;p=openldap Always implement Debug as lutil_debug(). --- diff --git a/include/ldap_log.h b/include/ldap_log.h index 0115024d40..c6b6c4f13b 100644 --- a/include/ldap_log.h +++ b/include/ldap_log.h @@ -59,26 +59,24 @@ extern int ldap_syslog_level; #ifdef LDAP_SYSLOG #define Debug( level, fmt, arg1, arg2, arg3 ) \ do { \ - if ( ldap_debug & (level) ) \ - fprintf( stderr, (fmt), (arg1), (arg2), (arg3) ); \ + lutil_debug( ldap_debug, (level), (fmt), (arg1), (arg2), (arg3) ); \ if ( ldap_syslog & (level) ) \ syslog( ldap_syslog_level, (fmt), (arg1), (arg2), (arg3) ); \ } while ( 0 ) -#else /* LDAP_SYSLOG */ -#ifndef HAVE_WINSOCK + +#else #define Debug( level, fmt, arg1, arg2, arg3 ) \ - do { \ - if ( ldap_debug & (level) ) \ - fprintf( stderr, (fmt), (arg1), (arg2), (arg3) ); \ - } while ( 0 ) -#else /* !WINSOCK */ -LDAP_F(void) Debug LDAP_P(( int level, const char* fmt, ... )); -#endif /* !WINSOCK */ -#endif /* LDAP_SYSLOG */ + lutil_debug( ldap_debug, (level), (fmt), (arg1), (arg2), (arg3) ) +#endif + #else /* LDAP_DEBUG */ #define Debug( level, fmt, arg1, arg2, arg3 ) #endif /* LDAP_DEBUG */ +LDAP_F(void) lutil_debug LDAP_P(( + int debug, int level, + const char* fmt, ... )); + LDAP_END_DECL #endif /* _LDAP_LOG_H */