You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2005/01/07 19:29:14 UTC

svn commit: r124556 - /httpd/httpd/trunk/modules/arch/win32/mod_win32.c

Author: wrowe
Date: Fri Jan  7 10:29:13 2005
New Revision: 124556

URL: http://svn.apache.org/viewcvs?view=rev&rev=124556
Log:

  Handle PATH_INFO as opaque byte-wise data for cgi invocation as
  handled for other variables with bug 9223.

PR: 32730
Submitted by: Richard Donkin <rd9 donkin.org>
Modified:
   httpd/httpd/trunk/modules/arch/win32/mod_win32.c

Modified: httpd/httpd/trunk/modules/arch/win32/mod_win32.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/arch/win32/mod_win32.c?view=diff&rev=124556&p1=httpd/httpd/trunk/modules/arch/win32/mod_win32.c&r1=124555&p2=httpd/httpd/trunk/modules/arch/win32/mod_win32.c&r2=124556
==============================================================================
--- httpd/httpd/trunk/modules/arch/win32/mod_win32.c	(original)
+++ httpd/httpd/trunk/modules/arch/win32/mod_win32.c	Fri Jan  7 10:29:13 2005
@@ -531,7 +531,8 @@
                 && (strncmp(elts[i].key, "HTTP_", 5) == 0
                  || strncmp(elts[i].key, "SERVER_", 7) == 0
                  || strncmp(elts[i].key, "REQUEST_", 8) == 0
-                 || strcmp(elts[i].key, "QUERY_STRING") == 0)) {
+                 || strcmp(elts[i].key, "QUERY_STRING") == 0
+                 || strcmp(elts[i].key, "PATH_INFO") == 0)) {
             prep_string((const char**) &elts[i].val, r->pool);
         }
     }