From bc968af121b1dcae58d3199efdfe6fdce520884e Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Mon, 31 Mar 2003 14:38:51 +0000 Subject: [PATCH] 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@99148 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_engine_mutex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ssl/ssl_engine_mutex.c b/modules/ssl/ssl_engine_mutex.c index ae4e3c4643..ad029b02d7 100644 --- a/modules/ssl/ssl_engine_mutex.c +++ b/modules/ssl/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 -- 2.50.1