dgaudet 98/02/13 18:51:39
Modified: src CHANGES mod_rewrite.c
Log:
mod_rewrite's RewriteLog should behave like mod_log_config, it
shouldn't force hostname lookups.
PR: 1684
Revision Changes Path
1.293 +3 -0 apache-1.2/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.2/src/CHANGES,v
retrieving revision 1.292
retrieving revision 1.293
diff -u -r1.292 -r1.293
--- CHANGES 1998/02/03 10:00:47 1.292
+++ CHANGES 1998/02/14 02:51:36 1.293
@@ -1,5 +1,8 @@
Changes with Apache 1.2.6
+ *) mod_rewrite's RewriteLog should behave like mod_log_config, it
+ shouldn't force hostname lookups. [Dean Gaudet] PR#1684
+
*) mod_include when using XBitHack Full would send ETags in addition to
sending Last-Modifieds. This is incorrect HTTP/1.1 behaviour.
[Dean Gaudet] PR#1133
1.31 +1 -1 apache-1.2/src/mod_rewrite.c
Index: mod_rewrite.c
===================================================================
RCS file: /export/home/cvs/apache-1.2/src/mod_rewrite.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- mod_rewrite.c 1998/02/01 02:47:41 1.30
+++ mod_rewrite.c 1998/02/14 02:51:37 1.31
@@ -2377,7 +2377,7 @@
ruser = "\"\"";
}
- rhost = get_remote_host(connect, r->server->module_config, REMOTE_NAME);
+ rhost = get_remote_host(connect, r->server->module_config,
REMOTE_NOLOOKUP);
if (rhost == NULL)
rhost = "UNKNOWN-HOST";