From: Kurt Zeilenga Date: Wed, 8 Jun 2005 23:36:45 +0000 (+0000) Subject: Fix bad eos in dead code. X-Git-Tag: OPENLDAP_REL_ENG_2_2_27~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c201bdb1ccfc73dbc5f347cbfa74198ab7dcc933;p=thirdparty%2Fopenldap.git Fix bad eos in dead code. --- diff --git a/servers/slapd/config.c b/servers/slapd/config.c index 57bd4efd81..cf25999f9a 100644 --- a/servers/slapd/config.c +++ b/servers/slapd/config.c @@ -1809,12 +1809,12 @@ read_config( const char *fname, int depth ) } if ( strcasecmp( cargv[1], "off" ) == 0 ) { #ifdef NEW_LOGGING - LDAP_LOG( CONFIG, CRIT, - "%s: line %d: schema checking cannot be disabled, option ignored! - "vary!\n", fname, lineno , 0 ); + LDAP_LOG( CONFIG, CRIT, "%s: line %d: " + "schema checking cannot be disabled, option ignored!\n", + fname, lineno , 0 ); #else - Debug( LDAP_DEBUG_ANY, - "%s: line %d: schema checking cannot be diabled, option ignored!\n", + Debug( LDAP_DEBUG_ANY, "%s: line %d: " + "schema checking cannot be diabled, option ignored!\n", fname, lineno, 0 ); #endif } else {