You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mt...@apache.org on 2009/02/07 10:55:15 UTC

svn commit: r741871 - /apr/apr/trunk/locks/unix/global_mutex.c

Author: mturk
Date: Sat Feb  7 09:55:15 2009
New Revision: 741871

URL: http://svn.apache.org/viewvc?rev=741871&view=rev
Log:
Use macro for determinig function name

Modified:
    apr/apr/trunk/locks/unix/global_mutex.c

Modified: apr/apr/trunk/locks/unix/global_mutex.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/locks/unix/global_mutex.c?rev=741871&r1=741870&r2=741871&view=diff
==============================================================================
--- apr/apr/trunk/locks/unix/global_mutex.c (original)
+++ apr/apr/trunk/locks/unix/global_mutex.c Sat Feb  7 09:55:15 2009
@@ -180,7 +180,7 @@
     apr_status_t rv;
     apr_global_mutex_t *mutex = (apr_global_mutex_t *)theglobal_mutex;
 
-    rv = apr_proc_mutex_set_perms(mutex->proc_mutex, perms, uid, gid);
+    rv = APR_PERMS_SET_FN(proc_mutex)(mutex->proc_mutex, perms, uid, gid);
     return rv;
 }