refine previous commit

This commit is contained in:
Pierangelo Masarati 2006-06-13 10:03:44 +00:00
parent f6e4f20254
commit 4a071da8c2

View File

@ -2176,9 +2176,15 @@ config_requires(ConfigArgs *c) {
}
i = verbs_to_mask(argc, argv, requires_ops, &requires);
if ( i ) {
snprintf( c->msg, sizeof( c->msg ), "<%s> unknown feature", c->argv[0] );
Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
c->log, c->msg, c->argv[i]);
if (strcasecmp( c->argv[ i ], "none" ) == 0 ) {
snprintf( c->msg, sizeof( c->msg ), "<%s> \"none\" (#%d) must be listed first", c->argv[0], i - 1 );
Debug(LDAP_DEBUG_ANY, "%s: %s\n",
c->log, c->msg, 0);
} else {
snprintf( c->msg, sizeof( c->msg ), "<%s> unknown feature #%d", c->argv[0], i - 1 );
Debug(LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
c->log, c->msg, c->argv[i]);
}
return(1);
}
c->be->be_requires = requires;