dgaudet     99/04/20 16:38:45

  Modified:    src      CHANGES
               src/main http_request.c
  Log:
  copy expecting_100 when doing an internal redirect
  
  PR:           3910
  Submitted by: Jose KAHAN <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.1316    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1315
  retrieving revision 1.1316
  diff -u -r1.1315 -r1.1316
  --- CHANGES   1999/04/20 21:53:22     1.1315
  +++ CHANGES   1999/04/20 23:38:41     1.1316
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.7
   
  +  *) The "100 Continue" response wasn't being sent after internal
  +     redirects. [Jose KAHAN <[EMAIL PROTECTED]>] PR#3910
  +
     *) When padding the name with spaces for display, mod_autoindex would
        count &, <, and > in their escaped width, messing up the display.
        [Dean Gaudet] PR#4075
  
  
  
  1.147     +1 -0      apache-1.3/src/main/http_request.c
  
  Index: http_request.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_request.c,v
  retrieving revision 1.146
  retrieving revision 1.147
  diff -u -r1.146 -r1.147
  --- http_request.c    1999/03/07 15:05:36     1.146
  +++ http_request.c    1999/04/20 23:38:44     1.147
  @@ -1309,6 +1309,7 @@
   
       new->htaccess        = r->htaccess;
       new->no_cache        = r->no_cache;
  +    new->expecting_100        = r->expecting_100;
       new->no_local_copy   = r->no_local_copy;
       new->read_length     = r->read_length;     /* We can only read it once */
       new->vlist_validator = r->vlist_validator;
  
  
  

Reply via email to