From: Kurt Zeilenga Date: Mon, 20 Jan 2003 20:17:12 +0000 (+0000) Subject: cleanup X-Git-Tag: NO_SLAP_OP_BLOCKS~589 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a190d15a60314728df798e260d924c85612190d9;p=openldap cleanup --- diff --git a/servers/slapd/tools/slapcommon.c b/servers/slapd/tools/slapcommon.c index 6e943ca8a8..23fc0bf64c 100644 --- a/servers/slapd/tools/slapcommon.c +++ b/servers/slapd/tools/slapcommon.c @@ -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 ); }