mturk 2005/02/06 03:30:46
Modified: jk/native/apache-2.0 mod_jk.c
Log:
Use shmem name since it can be either true filename or "memory".
Revision Changes Path
1.119 +2 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c
Index: mod_jk.c
===================================================================
RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- mod_jk.c 6 Feb 2005 11:21:37 -0000 1.118
+++ mod_jk.c 6 Feb 2005 11:30:46 -0000 1.119
@@ -2251,7 +2251,7 @@
rc = jk_shm_attach(jk_shm_file, 0, 0, &jk_shmem);
if (JK_IS_DEBUG_LEVEL(conf->log))
jk_log(conf->log, JK_LOG_DEBUG, "Attached shm:%s with status %d",
- jk_shm_file ? jk_shm_file : "memory", rc);
+ jk_shmem.filename, rc);
if (!rc) {
apr_pool_cleanup_register(pconf, s, jk_cleanup_shmem,
jk_cleanup_shmem);
@@ -2281,7 +2281,7 @@
rc = jk_shm_open(jk_shm_file, 0, 0, &jk_shmem);
if (JK_IS_DEBUG_LEVEL(conf->log))
jk_log(conf->log, JK_LOG_DEBUG, "Initialized shm:%s with status %d",
- jk_shm_file ? jk_shm_file : "memory", rc);
+ jk_shmem.filename, rc);
if (!rc) {
apr_pool_cleanup_register(pconf, s, jk_cleanup_shmem,
jk_cleanup_shmem);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]