dgaudet     98/01/19 16:27:21

  Modified:    .        STATUS
               src      CHANGES
               src/modules/standard mod_rewrite.c
  Log:
  RewriteLog shouldn't force hostname lookups.
  
  PR:           1684
  
  Revision  Changes    Path
  1.101     +1 -0      apachen/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /export/home/cvs/apachen/STATUS,v
  retrieving revision 1.100
  retrieving revision 1.101
  diff -u -r1.100 -r1.101
  --- STATUS    1998/01/20 00:25:13     1.100
  +++ STATUS    1998/01/20 00:27:07     1.101
  @@ -83,6 +83,7 @@
       * Martin's [PATCH] mod_speling [300] Multiple Choices bug (Take 2)
       * Dean's [PATCH] protect the environment
       * general/1666: Apache uses a case sensitive match for "Basic" auth 
scheme
  +    * mod_rewrite/1684: RewriteLog directive does the equivalent of 
"HostnameLookups on"
   
   Available Patches:
   
  
  
  
  1.568     +3 -0      apachen/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/CHANGES,v
  retrieving revision 1.567
  retrieving revision 1.568
  diff -u -r1.567 -r1.568
  --- CHANGES   1998/01/20 00:07:20     1.567
  +++ CHANGES   1998/01/20 00:27:15     1.568
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3b4
   
  +  *) mod_rewrite's RewriteLog should behave like mod_log_config, it
  +     shouldn't force hostname lookups.  [Dean Gaudet] PR#1684
  +
     *) "basic" auth needs a case-insensitive comparison.
        [EMAIL PROTECTED] PR#1666
   
  
  
  
  1.62      +1 -1      apachen/src/modules/standard/mod_rewrite.c
  
  Index: mod_rewrite.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/modules/standard/mod_rewrite.c,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- mod_rewrite.c     1998/01/13 23:11:26     1.61
  +++ mod_rewrite.c     1998/01/20 00:27:20     1.62
  @@ -2749,7 +2749,7 @@
           ruser = "\"\"";
       }
   
  -    rhost = get_remote_host(conn, r->server->module_config, REMOTE_NAME);
  +    rhost = get_remote_host(conn, r->server->module_config, REMOTE_NOLOOKUP);
       if (rhost == NULL)
           rhost = "UNKNOWN-HOST";
   
  
  
  

Reply via email to