From 977292a96728bd1b51fcc29472f7317ebf274a0f Mon Sep 17 00:00:00 2001
From: Kurt Zeilenga <kurt@openldap.org>
Date: Mon, 21 Jun 1999 22:33:35 +0000
Subject: [PATCH] Always implement Debug as lutil_debug().

---
 include/ldap_log.h | 22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 deletions(-)

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 */
-- 
GitLab