]> git.sur5r.net Git - openldap/commitdiff
cleanup
authorKurt Zeilenga <kurt@openldap.org>
Mon, 20 Jan 2003 20:17:12 +0000 (20:17 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 20 Jan 2003 20:17:12 +0000 (20:17 +0000)
servers/slapd/tools/slapcommon.c

index 6e943ca8a8ad2c03cbf5095a4901cd0f30a67c41..23fc0bf64c2c460cdfa90b69d31b7cb0108a0a39 100644 (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 );
        }