You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ji...@apache.org on 2009/09/09 20:10:17 UTC

svn commit: r813063 - /apr/apr/trunk/locks/unix/proc_mutex.c

Author: jim
Date: Wed Sep  9 18:10:17 2009
New Revision: 813063

URL: http://svn.apache.org/viewvc?rev=813063&view=rev
Log:
just use it :)

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

Modified: apr/apr/trunk/locks/unix/proc_mutex.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/locks/unix/proc_mutex.c?rev=813063&r1=813062&r2=813063&view=diff
==============================================================================
--- apr/apr/trunk/locks/unix/proc_mutex.c (original)
+++ apr/apr/trunk/locks/unix/proc_mutex.c Wed Sep  9 18:10:17 2009
@@ -69,7 +69,7 @@
     #define APR_POSIXSEM_NAME_MAX 30
     #define APR_POSIXSEM_NAME_MIN 13
     sem_t *psem;
-    char semname[34];   /* APR_MD5_DIGESTSIZE*2 + 2 */
+    char semname[APR_MD5_DIGESTSIZE * 2 + 2];
     
     new_mutex->interproc = apr_palloc(new_mutex->pool,
                                       sizeof(*new_mutex->interproc));