]> granicus.if.org Git - apache/commitdiff
Remind the admin about the User and Group directives when we are
authorJeff Trawick <trawick@apache.org>
Mon, 8 Apr 2002 16:57:06 +0000 (16:57 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 8 Apr 2002 16:57:06 +0000 (16:57 +0000)
unable to set permissions on a semaphore.

PR:    7812

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94541 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/mpm/prefork/prefork.c
server/mpm/worker/worker.c

diff --git a/CHANGES b/CHANGES
index 95b678070ce3835f779346317380a96b388bc4f9..38990c537176b6f1d653552f3ae0d75a34b4a754 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
 Changes with Apache 2.0.36
 
+  *) Remind the admin about the User and Group directives when we are
+     unable to set permissions on a semaphore.  PR 7812  [Jeff Trawick]
+
   *) fix possible compilation problem in ssl_engine_kernel.c. PR 7802
      [Doug MacEachern]
 
index 3cb8b061ba7c0b2d9fed1589f7731c68590e4fdc..9f3b17ae4bf43ba915a77f46da8b1fcee9e065c1 100644 (file)
@@ -958,7 +958,8 @@ int ap_mpm_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s)
         rv = unixd_set_proc_mutex_perms(accept_mutex);
         if (rv != APR_SUCCESS) {
             ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s,
-                         "Couldn't set permissions on cross-process lock");
+                         "Couldn't set permissions on cross-process lock; "
+                         "check User and Group directives");
             return 1;
         }
     }
index 8f7aaeed3d0f0f86b3afe722efc7f3400c92540a..ee49f165fe329b9a58de5af51b0be925b687064c 100644 (file)
@@ -1613,7 +1613,8 @@ int ap_mpm_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s)
         rv = unixd_set_proc_mutex_perms(accept_mutex);
         if (rv != APR_SUCCESS) {
             ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s,
-                         "Couldn't set permissions on cross-process lock");
+                         "Couldn't set permissions on cross-process lock; "
+                         "check User and Group directives");
             return 1;
         }
     }