This has broken the build on Windows also.
The addition of the log statement pushed the declaration of char* buff below
it out of the beginning of the block, and VC is being pedantic about the C
declaration rules.

tim



From: <[EMAIL PROTECTED]>
Reply-To: Tomcat Developers List <dev@tomcat.apache.org>
Date: Tue, 23 Sep 2008 16:37:44 -0000
To: <dev@tomcat.apache.org>
Subject: svn commit: r698229 - in /tomcat/connectors/trunk/jk:
native/apache-2.0/mod_jk.c native/common/jk_ajp_common.c
native/common/jk_service.h native/common/jk_util.c
xdocs/miscellaneous/changelog.xml

                     if (s.content_read < s.content_length ||
                         (s.is_chunked && !s.no_more_chunks)) {
-
+                        if (JK_IS_DEBUG_LEVEL(xconf->log))
+                           jk_log(xconf->log, JK_LOG_DEBUG,
+                                  "Consuming remaining request data for
worker=%s",
+                                  STRNULL_FOR_NULL(worker_name));

Reply via email to