From: Kurt Zeilenga Date: Wed, 18 May 2005 20:12:54 +0000 (+0000) Subject: ignore "schemacheck off" (with warning) X-Git-Tag: OPENLDAP_REL_ENG_2_2_27~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f23d78750ec0877b511687fc20dd6d3672b4c29a;p=thirdparty%2Fopenldap.git ignore "schemacheck off" (with warning) --- diff --git a/servers/slapd/config.c b/servers/slapd/config.c index cf9e90eb69..57bd4efd81 100644 --- a/servers/slapd/config.c +++ b/servers/slapd/config.c @@ -1810,14 +1810,13 @@ 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 disabled! your mileage may " + "%s: line %d: schema checking cannot be disabled, option ignored! "vary!\n", fname, lineno , 0 ); #else Debug( LDAP_DEBUG_ANY, - "%s: line %d: schema checking disabled! your mileage may vary!\n", + "%s: line %d: schema checking cannot be diabled, option ignored!\n", fname, lineno, 0 ); #endif - global_schemacheck = 0; } else { global_schemacheck = 1; }