$OpenBSD: patch-server_mpm_common_c,v 1.6 2013/07/15 07:40:18 sthen Exp $
--- server/mpm_common.c.orig	Sat Feb 16 22:51:16 2013
+++ server/mpm_common.c	Mon Jul 15 08:40:33 2013
@@ -994,18 +994,18 @@ int ap_signal_server(int *exit_status, apr_pool_t *pco
             *exit_status = 1;
             return 1;
         }
-        status = "httpd (no pid file) not running";
+        status = "httpd2 (no pid file) not running";
     }
     else {
         if (kill(otherpid, 0) == 0) {
             running = 1;
             status = apr_psprintf(pconf,
-                                  "httpd (pid %" APR_PID_T_FMT ") already "
+                                  "httpd2 (pid %" APR_PID_T_FMT ") already "
                                   "running", otherpid);
         }
         else {
             status = apr_psprintf(pconf,
-                                  "httpd (pid %" APR_PID_T_FMT "?) not running",
+                                  "httpd2 (pid %" APR_PID_T_FMT "?) not running",
                                   otherpid);
         }
     }
@@ -1029,7 +1029,7 @@ int ap_signal_server(int *exit_status, apr_pool_t *pco
 
     if (!strcmp(dash_k_arg, "restart")) {
         if (!running) {
-            printf("httpd not running, trying to start\n");
+            printf("httpd2 not running, trying to start\n");
         }
         else {
             *exit_status = send_signal(otherpid, SIGHUP);
@@ -1039,7 +1039,7 @@ int ap_signal_server(int *exit_status, apr_pool_t *pco
 
     if (!strcmp(dash_k_arg, "graceful")) {
         if (!running) {
-            printf("httpd not running, trying to start\n");
+            printf("httpd2 not running, trying to start\n");
         }
         else {
             *exit_status = send_signal(otherpid, AP_SIG_GRACEFUL);
@@ -1056,7 +1056,7 @@ int ap_signal_server(int *exit_status, apr_pool_t *pco
             *exit_status = send_signal(otherpid, AP_SIG_GRACEFUL_STOP);
         }
 #else
-        printf("httpd MPM \"" MPM_NAME "\" does not support graceful-stop\n");
+        printf("httpd2 MPM \"" MPM_NAME "\" does not support graceful-stop\n");
 #endif
         return 1;
     }
