From: wrobell Date: Wed, 25 Feb 2004 16:20:51 +0000 (+0000) Subject: - problem fixed in ver. 3.1.3 X-Git-Tag: auto/ac/apache-mod_python-3_1_3-2~2 X-Git-Url: https://git.pld-linux.org/?p=packages%2Fapache-mod_python.git;a=commitdiff_plain;h=c7d39bc4dc696a015b1f077b6871a9ee3880f759;ds=sidebyside - problem fixed in ver. 3.1.3 Changed files: apache-mod_python-right-mutex-perms.patch -> 1.2 --- diff --git a/apache-mod_python-right-mutex-perms.patch b/apache-mod_python-right-mutex-perms.patch deleted file mode 100644 index c8e1cf9..0000000 --- a/apache-mod_python-right-mutex-perms.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- mod_python-3.1.2b.orig/src/mod_python.c 2003-10-22 21:57:04.000000000 +0200 -+++ mod_python-3.1.2b/src/mod_python.c 2003-12-16 22:33:03.000000000 +0100 -@@ -419,7 +419,11 @@ - } - else { - #if !defined(OS2) && !defined(WIN32) && !defined(BEOS) && !defined(NETWARE) -- chown(fname, unixd_config.user_id, -1); -+ if( !geteuid() ) -+ { -+ chown(fname, unixd_config.user_id, -1); -+ unixd_set_global_mutex_perms(mutex[n]); -+ } - #endif - } - }