Changes with Apache 2.1.0-dev
[Remove entries to the current 2.0 section below, when backported]
+ *) Win32: apache -k start|restart|install|config can leave stranded
+ piped logger processes (eg, rotatelogs.exe) due to improper
+ server shutdown on these code paths.
+ [Bill Stoddard]
*) Restructured mod_auth_ldap to fit the new authentication model.
The module is now called authnz_ldap and has been moved out of
if (!strcasecmp(signal_arg, "install")) {
rv = mpm_service_install(ptemp, inst_argc, inst_argv, 0);
+ apr_pool_destroy(s->process->pool);
+ apr_terminate();
exit (rv);
}
if (!strcasecmp(signal_arg, "config")) {
rv = mpm_service_install(ptemp, inst_argc, inst_argv, 1);
+ apr_pool_destroy(s->process->pool);
+ apr_terminate();
exit (rv);
}
lr->active = 0;
}
rv = mpm_service_start(ptemp, inst_argc, inst_argv);
+ apr_pool_destroy(s->process->pool);
+ apr_terminate();
exit (rv);
}
if (!strcasecmp(signal_arg, "restart")) {
mpm_signal_service(ptemp, 1);
+ apr_pool_destroy(s->process->pool);
+ apr_terminate();
exit (rv);
}