This commit is contained in:
Kurt Zeilenga 2003-01-20 20:17:12 +00:00
parent b3705e69f4
commit a190d15a60

View File

@ -191,14 +191,14 @@ slap_tool_init(
rc = slap_init( mode, progname );
if (rc != 0 ) {
if ( rc != 0 ) {
fprintf( stderr, "%s: slap_init failed!\n", progname );
exit( EXIT_FAILURE );
}
rc = slap_schema_init();
if (rc != 0 ) {
if ( rc != 0 ) {
fprintf( stderr, "%s: slap_schema_init failed!\n", progname );
exit( EXIT_FAILURE );
}
@ -217,14 +217,14 @@ slap_tool_init(
rc = glue_sub_init();
if (rc != 0 ) {
if ( rc != 0 ) {
fprintf( stderr, "Subordinate configuration error\n" );
exit( EXIT_FAILURE );
}
rc = slap_schema_check();
if (rc != 0 ) {
if ( rc != 0 ) {
fprintf( stderr, "%s: slap_schema_prep failed!\n", progname );
exit( EXIT_FAILURE );
}