Skip to content
Snippets Groups Projects
Commit a190d15a authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

cleanup

parent b3705e69
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment