]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/print.c
Cast away const.
[openldap] / libraries / libldap / print.c
index 4b865b7b4884338b718228aef80a88f5e11bd667..f71f3689c99552f7dd1858c70f4f32b323aef844 100644 (file)
@@ -1,5 +1,6 @@
+/* $OpenLDAP$ */
 /*
- * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
@@ -14,8 +15,6 @@
 
 #include "ldap-int.h"
 
-extern BER_LOG_PRINT_FN lber_log_print;
-
 /*
  * ldap log 
  */
@@ -27,63 +26,28 @@ static int ldap_log_check( LDAP *ld, int loglvl )
        if(ld == NULL) {
                errlvl = ldap_debug;
        } else {
-               errlvl = ld->ld_errno;
+               errlvl = ld->ld_debug;
        }
 
        return errlvl & loglvl ? 1 : 0;
 }
 
-int ldap_log_printf
-#ifdef HAVE_STDARG
-       ( LDAP *ld, int loglvl, char *fmt, ... )
-#else
-       ( va_alist )
-va_dcl
-#endif
+int ldap_log_printf( LDAP *ld, int loglvl, const char *fmt, ... )
 {
        char buf[ 1024 ];
        va_list ap;
 
-#ifdef HAVE_STDARG
-       va_start( ap, fmt );
-#else
-       LD *ld
-       int loglvl;
-       char *fmt;
-
-       va_start( ap );
-
-       errlvl = va_arg( ap, LD * );
-       loglvl = va_arg( ap, int );
-       fmt = va_arg( ap, char * );
-#endif
-
        if ( !ldap_log_check( ld, loglvl )) {
                return 0;
        }
 
-#ifdef HAVE_VSNPRINTF
+       va_start( ap, fmt );
+
        buf[sizeof(buf) - 1] = '\0';
        vsnprintf( buf, sizeof(buf)-1, fmt, ap );
-#elif HAVE_VSPRINTF
-       vsprintf( buf, fmt, ap ); /* hope it's not too long */
-#else
-       /* use doprnt() */
-       chokeme = "choke me! I don't have a doprnt manual handy!";
-#endif
 
        va_end(ap);
 
-       (*lber_log_print)( buf );
-       return 1;
-}
-
-static int lber_log_puts(int errlvl, int loglvl, char *buf)
-{
-       if ( !ldap_log_check( errlvl, loglvl )) {
-               return 0;
-       }
-
-       (*lber_log_print)( buf );
+       (*ber_pvt_log_print)( buf );
        return 1;
 }