rse         98/06/10 04:23:13

  Modified:    src      CHANGES
               src/main http_main.c
  Log:
  Correct initialization of variable `allowed_globals' in http_main.c
  
  Submitted by: Justin Bradford <[EMAIL PROTECTED]>
  Reviewed by: Ralf S. Engelschall
  PR: 2400
  
  Revision  Changes    Path
  1.907     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.906
  retrieving revision 1.907
  diff -u -r1.906 -r1.907
  --- CHANGES   1998/06/10 09:01:58     1.906
  +++ CHANGES   1998/06/10 11:23:10     1.907
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
   
  +  *) Correct initialization of variable `allowed_globals' in http_main.c
  +     [Justin Bradford <[EMAIL PROTECTED]>] PR#2400
  +
     *) Apache would incorrectly downcase the entire Content-Type passed from
        CGIs.  This affected server-push scripts and such which use
        multipart/x-mixed-replace;boundary=ThisRandomString.
  
  
  
  1.363     +1 -1      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.362
  retrieving revision 1.363
  diff -u -r1.362 -r1.363
  --- http_main.c       1998/06/08 20:32:16     1.362
  +++ http_main.c       1998/06/10 11:23:11     1.363
  @@ -4484,7 +4484,7 @@
   } globals;
   
   globals allowed_globals =
  -{0, NULL, NULL, NULL, 0};
  +{0, NULL, NULL, NULL, NULL, 0};
   
   /*
    * add_job()/remove_job() - add or remove an accepted socket from the
  
  
  

Reply via email to