Skip to content
Snippets Groups Projects
Commit a4322179 authored by Mark Valence's avatar Mark Valence
Browse files

Added calls to new module_init() and module_kill() routines.

parent 47d4d7fb
No related branches found
No related tags found
No related merge requests found
......@@ -359,6 +359,14 @@ int main( int argc, char **argv )
}
#endif
#ifdef SLAPD_MODULES
if ( module_init() != 0 ) {
rc = 1;
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 17 );
goto destroy;
}
#endif
if ( slap_init( serverMode, serverName ) != 0 ) {
rc = 1;
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
......@@ -452,6 +460,10 @@ destroy:
/* remember an error during destroy */
rc |= slap_destroy();
#ifdef SLAPD_MODULES
module_kill();
#endif
stop:
#ifdef HAVE_NT_EVENT_LOG
LogSlapdStoppedEvent( NTservice );
......
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