Skip to content
Snippets Groups Projects
Commit ac687014 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

K&R varargs branch of ldap_log_printf() was bogus

parent bbc024ff
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment