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

Initialize schema before starting server.

parent 46122fa6
No related branches found
No related tags found
No related merge requests found
......@@ -373,12 +373,6 @@ int main( int argc, char **argv )
}
#endif
if ( slap_init( serverMode, serverName ) != 0 ) {
rc = 1;
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
goto destroy;
}
if ( slap_schema_init( ) != 0 ) {
#ifdef NEW_LOGGING
LDAP_LOG( OPERATION, CRIT, "main: schema initialization error\n", 0, 0, 0 );
......@@ -391,6 +385,12 @@ int main( int argc, char **argv )
goto destroy;
}
if ( slap_init( serverMode, serverName ) != 0 ) {
rc = 1;
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
goto destroy;
}
if ( slap_controls_init( ) != 0 ) {
#ifdef NEW_LOGGING
LDAP_LOG( OPERATION, CRIT, "main: controls initialization error\n", 0, 0, 0 );
......
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