X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fprint.c;h=f8203c1604def10e36157f19abad00dd34caee2a;hb=1fd3c797a822ac121a481f5ba686779d6e620ed8;hp=5254fea8db43c47b823e5ca6b351fc0c772aede2;hpb=bd6dfe333d667ea8b795b20a684c3fc1cc05f6ae;p=openldap diff --git a/libraries/libldap/print.c b/libraries/libldap/print.c index 5254fea8db..f8203c1604 100644 --- a/libraries/libldap/print.c +++ b/libraries/libldap/print.c @@ -33,7 +33,7 @@ static int ldap_log_check( LDAP *ld, int loglvl ) int ldap_log_printf #ifdef HAVE_STDARG - ( LDAP *ld, int loglvl, char *fmt, ... ) + ( LDAP *ld, int loglvl, const char *fmt, ... ) #else ( va_alist ) va_dcl @@ -45,13 +45,13 @@ va_dcl #ifdef HAVE_STDARG va_start( ap, fmt ); #else - LD *ld + LDAP *ld; int loglvl; char *fmt; va_start( ap ); - errlvl = va_arg( ap, LD * ); + ld = va_arg( ap, LDAP * ); loglvl = va_arg( ap, int ); fmt = va_arg( ap, char * ); #endif @@ -72,6 +72,6 @@ va_dcl va_end(ap); - (*lber_pvt_log_print)( buf ); + (*ber_pvt_log_print)( buf ); return 1; }