You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2008/10/27 01:40:36 UTC

svn commit: r708066 - /httpd/httpd/trunk/modules/cache/mod_socache_dbm.c

Author: pquerna
Date: Sun Oct 26 17:40:36 2008
New Revision: 708066

URL: http://svn.apache.org/viewvc?rev=708066&view=rev
Log:
* modules/cache/mod_socache_dbm.c: Fix compile by including unixd.h on operating
    systems that need it, which is required for for the use of unixd_config
    inside socache_dbm_init.

Modified:
    httpd/httpd/trunk/modules/cache/mod_socache_dbm.c

Modified: httpd/httpd/trunk/modules/cache/mod_socache_dbm.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_socache_dbm.c?rev=708066&r1=708065&r2=708066&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_socache_dbm.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_socache_dbm.c Sun Oct 26 17:40:36 2008
@@ -34,6 +34,10 @@
 
 #include "ap_socache.h"
 
+#if AP_NEED_SET_MUTEX_PERMS
+#include "unixd.h"
+#endif
+
 /* Use of the context structure must be thread-safe after the initial
  * create/init; callers must hold the mutex. */
 struct ap_socache_instance_t {