You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by hg...@apache.org on 2007/04/24 10:00:51 UTC

svn commit: r531816 - /tomcat/connectors/trunk/jk/native/common/jk_status.c

Author: hgomez
Date: Tue Apr 24 01:00:50 2007
New Revision: 531816

URL: http://svn.apache.org/viewvc?view=rev&rev=531816
Log:
Not more need for AS400 #ifdef since it use _REENTRANT.

Modified:
    tomcat/connectors/trunk/jk/native/common/jk_status.c

Modified: tomcat/connectors/trunk/jk/native/common/jk_status.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_status.c?view=diff&rev=531816&r1=531815&r2=531816
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_status.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_status.c Tue Apr 24 01:00:50 2007
@@ -917,7 +917,7 @@
 {
     jk_map_t *m;
     status_worker_t *w = p->worker;
-#if defined(AS400) || defined(_REENTRANT)
+#ifdef _REENTRANT
     char *lasts;
 #endif
     char *param;
@@ -949,7 +949,7 @@
         JK_TRACE_EXIT(l);
         return JK_FALSE;
     }
-#if defined(AS400) || defined(_REENTRANT)
+#ifdef _REENTRANT
     for (param = strtok_r(query, "&", &lasts);
          param; param = strtok_r(NULL, "&", &lasts)) {
 #else
@@ -2437,7 +2437,7 @@
     int mime;
     const char *arg;
     unsigned int hide_legend;
-    
+
     JK_TRACE_ENTER(l);
     status_get_string(p, JK_STATUS_ARG_MIME, NULL, &arg, l);
     mime = status_mime_int(arg);



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