]> git.sur5r.net Git - openldap/commitdiff
Fix schema init sequence
authorHoward Chu <hyc@openldap.org>
Fri, 4 Mar 2005 09:26:50 +0000 (09:26 +0000)
committerHoward Chu <hyc@openldap.org>
Fri, 4 Mar 2005 09:26:50 +0000 (09:26 +0000)
servers/slapd/slapcommon.c

index 9aa87ea91abb71922d90a52ff5a2e9c6ac2cf305..b49c6c53256639cf16ef42bb5d389cf5e0579806 100644 (file)
@@ -312,17 +312,17 @@ slap_tool_init(
        }
 #endif
                
-       rc = slap_init( mode, progname );
+       rc = slap_schema_init();
 
        if ( rc != 0 ) {
-               fprintf( stderr, "%s: slap_init failed!\n", progname );
+               fprintf( stderr, "%s: slap_schema_init failed!\n", progname );
                exit( EXIT_FAILURE );
        }
 
-       rc = slap_schema_init();
+       rc = slap_init( mode, progname );
 
        if ( rc != 0 ) {
-               fprintf( stderr, "%s: slap_schema_init failed!\n", progname );
+               fprintf( stderr, "%s: slap_init failed!\n", progname );
                exit( EXIT_FAILURE );
        }