fix from jon@symas.com - missing arguments to Debug/LDAP_LOG

This commit is contained in:
Howard Chu 2001-12-17 22:47:36 +00:00
parent 8ad557e4ec
commit 923cdcf3c5

View File

@ -961,11 +961,11 @@ read_config( const char *fname )
LDAP_LOG(( "config", LDAP_LEVEL_CRIT, LDAP_LOG(( "config", LDAP_LEVEL_CRIT,
"%s: line %d: " "%s: line %d: "
"unable to normalize suffix " "unable to normalize suffix "
"\"%s\"\n", dn )); "\"%s\"\n", fname, lineno, dn ));
#else #else
Debug( LDAP_DEBUG_ANY, "%s: line %d: " Debug( LDAP_DEBUG_ANY, "%s: line %d: "
"unable to normalize suffix " "unable to normalize suffix "
"\"%s\"\n", dn, NULL, NULL ); "\"%s\"\n", fname, lineno, dn );
#endif #endif
free( dn ); free( dn );
return 1; return 1;