stoddard    99/12/08 10:51:06

  Modified:    src/main http_main.c
  Log:
  I like David Whitmarsh's fix for this a bit better.
  
  Revision  Changes    Path
  1.483     +1 -1      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.482
  retrieving revision 1.483
  diff -u -r1.482 -r1.483
  --- http_main.c       1999/12/01 22:41:30     1.482
  +++ http_main.c       1999/12/08 18:51:03     1.483
  @@ -6135,7 +6135,7 @@
       pCommand = ap_psprintf(p, "\"%s\" -Z %s -f \"%s\"", buf, 
exit_event_name, ap_server_confname);  
   
       for (i = 1; i < argc; i++) {
  -        pCommand = ap_psprintf(p, "%s \"%s\"",pCommand, argv[i]); 
  +        pCommand = ap_pstrcat(p, pCommand, " \"", argv[i], "\"", NULL);
       }
   
       /* Create a pipe to send socket info to the child */
  
  
  

Reply via email to