You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2011/11/18 08:26:35 UTC

svn commit: r1203514 - /tomcat/jk/trunk/native/iis/jk_isapi_plugin.c

Author: mturk
Date: Fri Nov 18 07:26:34 2011
New Revision: 1203514

URL: http://svn.apache.org/viewvc?rev=1203514&view=rev
Log:
Its actually prefix, not name.

Modified:
    tomcat/jk/trunk/native/iis/jk_isapi_plugin.c

Modified: tomcat/jk/trunk/native/iis/jk_isapi_plugin.c
URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/native/iis/jk_isapi_plugin.c?rev=1203514&r1=1203513&r2=1203514&view=diff
==============================================================================
--- tomcat/jk/trunk/native/iis/jk_isapi_plugin.c (original)
+++ tomcat/jk/trunk/native/iis/jk_isapi_plugin.c Fri Nov 18 07:26:34 2011
@@ -55,7 +55,7 @@
 
 #define VERSION_STRING "Jakarta/ISAPI/" JK_EXPOSED_VERSION
 #define FULL_VERSION_STRING "Jakarta/ISAPI/" JK_FULL_EXPOSED_VERSION
-#define SHM_DEF_NAME   "JKISAPISHMEM"
+#define SHM_DEF_PREFIX      "JKISAPISHMEM_"
 #define DEFAULT_WORKER_NAME "ajp13"
 
 /*
@@ -2651,7 +2651,7 @@ static int init_jk(char *serverName)
     /* TODO: Use System logging to notify the user that
      *       we cannot open the configured log file.
      */
-    StringCbCopy(shm_name, MAX_PATH, SHM_DEF_NAME "_");
+    StringCbCopy(shm_name, MAX_PATH, SHM_DEF_PREFIX);
     jk_log(logger, JK_LOG_INFO, "Starting %s", (FULL_VERSION_STRING));
     StringCbCat(shm_name, MAX_PATH, serverName);
     StringCbCat(shm_name, MAX_PATH, "_");



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org