From: Howard Chu Date: Mon, 17 Dec 2001 22:47:36 +0000 (+0000) Subject: fix from jon@symas.com - missing arguments to Debug/LDAP_LOG X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~634 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=923cdcf3c523f99ea0a40881a093d64525db8f84;p=openldap fix from jon@symas.com - missing arguments to Debug/LDAP_LOG --- diff --git a/servers/slapd/config.c b/servers/slapd/config.c index 52eca16169..5ff853b30b 100644 --- a/servers/slapd/config.c +++ b/servers/slapd/config.c @@ -961,11 +961,11 @@ read_config( const char *fname ) LDAP_LOG(( "config", LDAP_LEVEL_CRIT, "%s: line %d: " "unable to normalize suffix " - "\"%s\"\n", dn )); + "\"%s\"\n", fname, lineno, dn )); #else Debug( LDAP_DEBUG_ANY, "%s: line %d: " "unable to normalize suffix " - "\"%s\"\n", dn, NULL, NULL ); + "\"%s\"\n", fname, lineno, dn ); #endif free( dn ); return 1;