$OpenBSD: patch-server_mpm_unix_c,v 1.1 2015/05/15 08:08:04 stsp Exp $
--- server/mpm_unix.c.orig	Thu Feb 20 20:38:49 2014
+++ server/mpm_unix.c	Sat Jan 10 15:00:07 2015
@@ -784,18 +784,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);
         }
     }
@@ -819,7 +819,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);
@@ -829,7 +829,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);
