
Apply this patch if you want to compile Apache 1.3.0
yourself under the Win32 environment.

                                       Ralf S. Engelschall
				       The Apache Group
                                       rse@apache.org

Index: mod_rewrite.c
===================================================================
RCS file: /e/apache/REPOS/apache-1.3/src/modules/standard/mod_rewrite.c,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- mod_rewrite.c	1998/05/29 09:19:41	1.113
+++ mod_rewrite.c	1998/06/03 12:12:11	1.114
@@ -3190,11 +3190,11 @@
 #if defined(WIN32)
     /* MS Windows */
     {
-        char *pCommand;
+        char pCommand[MAX_STRING_LEN];
         STARTUPINFO si;
         PROCESS_INFORMATION pi;
 
-        pCommand = strcat(SHELL_PATH, " /C ", cmd, NULL);
+        sprintf(pCommand, "%s /C %s", SHELL_PATH, cmd);
 
         memset(&si, 0, sizeof(si));
         memset(&pi, 0, sizeof(pi));

