From: Jim Jagielski Date: Mon, 31 Mar 2003 14:38:51 +0000 (+0000) Subject: Match what we do with the ssl_scache_dbm X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f18feebf6b521b84a028b8e83dc20581a3f75c8f;p=thirdparty%2Fapache%2Fhttpd.git Match what we do with the ssl_scache_dbm chown junk, which we know is safe and works, and more directly handles the issue with chown (agreed that a macro is needed eventually) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@99148 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_mutex.c b/ssl_engine_mutex.c index ae4e3c46430..ad029b02d7f 100644 --- a/ssl_engine_mutex.c +++ b/ssl_engine_mutex.c @@ -88,7 +88,7 @@ int ssl_mutex_init(server_rec *s, apr_pool_t *p) "Cannot create SSLMutex"); return FALSE; } -#if APR_HAS_FLOCK_SERIALIZE +#if !defined(OS2) && !defined(WIN32) && !defined(BEOS) && !defined(NETWARE) if (mc->szMutexFile && mc->ChownMutexFile == TRUE) chown(mc->szMutexFile, unixd_config.user_id, -1); #endif