Parent Directory
|
Revision Log
|
Patch
--- httpd/mod_python/trunk/src/mod_python.c 2006/03/11 03:42:09 384999
+++ httpd/mod_python/trunk/src/mod_python.c 2006/03/11 03:46:52 385000
@@ -331,7 +331,7 @@
int locks;
int n;
- /* figre out maximum possible concurrent connections */
+ /* figure out maximum possible concurrent connections */
/* MAX_DAEMON_USED seems to account for MaxClients, as opposed to
MAX_DAEMONS, which is ServerLimit
*/
@@ -383,7 +383,7 @@
#if !defined(OS2) && !defined(WIN32) && !defined(BEOS) && !defined(NETWARE)
char fname[255];
- snprintf(fname, 255, "/tmp/mpmtx%d%d", glb->parent_pid, n);
+ snprintf(fname, 255, "MUTEX_DIR/mpmtx%d%d", glb->parent_pid, n);
#else
char *fname = NULL;
#endif
@@ -446,7 +446,7 @@
#if !defined(OS2) && !defined(WIN32) && !defined(BEOS) && !defined(NETWARE)
char fname[255];
- snprintf(fname, 255, "/tmp/mpmtx%d%d", glb->parent_pid, n);
+ snprintf(fname, 255, "MUTEX_DIR/mpmtx%d%d", glb->parent_pid, n);
#else
char *fname = NULL;
#endif
| apache@apache.org | ViewVC Help |
| Powered by ViewVC 1.1.2 |