for backward compatability.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93360
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.32-dev
+ *) Win32: apache -k shutdown now behaves like apache -k stop.
+ [Bill Stoddard]
+
*) Win32: Get apache -k restart -n apache2 working reliabily again.
[Bill Stoddard]
* -k runservice [WinNT errors logged from rewrite_args]
* -k uninstall
* -k stop
+ * -k shutdown (same as -k stop). Maintained for backward compatability.
*
* in these cases we -don't- care if httpd.conf has config errors!
*/
exit(rv);
}
- if (!strcasecmp(signal_arg, "stop")) {
+ if ((!strcasecmp(signal_arg, "stop")) ||
+ (!strcasecmp(signal_arg, "shutdown"))) {
mpm_signal_service(ptemp, 0);
exit(0);
}