Fix -ULDAP_DEBUG lint.

This commit is contained in:
Kurt Zeilenga 1999-06-02 03:09:40 +00:00
parent fea91d7ad2
commit 14b04f4d0b
2 changed files with 5 additions and 2 deletions

View File

@ -31,8 +31,11 @@ do_modify(
char *ndn;
char *last;
unsigned long tag, len;
LDAPModList *modlist, *tmp;
LDAPModList *modlist;
LDAPModList **modtail;
#ifdef LDAP_DEBUG
LDAPModList *tmp;
#endif
Backend *be;
Debug( LDAP_DEBUG_TRACE, "do_modify\n", 0, 0, 0 );

View File

@ -10,7 +10,7 @@
static FILE *log_file;
void Debug( int level, const char *fmt, ... )
void (Debug)( int level, const char *fmt, ... )
{
char buffer[4096];
va_list vl;