]> granicus.if.org Git - apache/commitdiff
fix a typo in a log message... the message claimed that apr_proc_mutex_lock()
authorJeff Trawick <trawick@apache.org>
Tue, 5 Mar 2002 21:01:24 +0000 (21:01 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 5 Mar 2002 21:01:24 +0000 (21:01 +0000)
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

server/mpm/worker/worker.c

index 679b061fd02d69c6420a67d3e06200d5e98c24cd..28fb275f1895f8630248423f69fc281afc42cd6e 100644 (file)
@@ -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();
             }