From: Jeff Trawick Date: Tue, 5 Mar 2002 21:01:24 +0000 (+0000) Subject: fix a typo in a log message... the message claimed that apr_proc_mutex_lock() X-Git-Tag: 2.0.33~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=152c2696991186bd3977fdc18b1586abb1703c24;p=apache fix a typo in a log message... the message claimed that apr_proc_mutex_lock() failed when actually it was apr_proc_mutex_unlock() which failed git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93719 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/worker/worker.c b/server/mpm/worker/worker.c index 679b061fd0..28fb275f18 100644 --- a/server/mpm/worker/worker.c +++ b/server/mpm/worker/worker.c @@ -695,7 +695,7 @@ static void *listener_thread(apr_thread_t *thd, void * dummy) if ((rv = SAFE_ACCEPT(apr_proc_mutex_unlock(accept_mutex))) != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf, - "apr_proc_mutex_lock failed. Attempting to " + "apr_proc_mutex_unlock failed. Attempting to " "shutdown process gracefully."); signal_workers(); }