dgaudet 97/04/28 19:39:03
Modified: src CHANGES http_main.c
Log:
Fix <VirtualHost _default:portnum>.
Reviewed by: Randy, Roy
Revision Changes Path
1.259 +2 -0 apache/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache/src/CHANGES,v
retrieving revision 1.258
retrieving revision 1.259
diff -C3 -r1.258 -r1.259
*** CHANGES 1997/04/28 03:52:05 1.258
--- CHANGES 1997/04/29 02:39:00 1.259
***************
*** 1,5 ****
--- 1,7 ----
Changes with Apache 1.2b10
+ *) <VirtualHost _default_:portnum> didn't work properly. [Dean Gaudet]
+
*) Added prototype for mktemp() for SUNOS4 [Marc Slemko]
*) In mod_proxy.c, check return values for proxy_host2addr() when reading
1.142 +2 -1 apache/src/http_main.c
Index: http_main.c
===================================================================
RCS file: /export/home/cvs/apache/src/http_main.c,v
retrieving revision 1.141
retrieving revision 1.142
diff -C3 -r1.141 -r1.142
*** http_main.c 1997/04/28 00:14:27 1.141
--- http_main.c 1997/04/29 02:39:01 1.142
***************
*** 1477,1483 ****
sar->host_addr.s_addr == server_ip.s_addr) &&
(sar->host_port == 0 || sar->host_port == port)) {
return virt;
! } else if ( sar->host_addr.s_addr == DEFAULT_VHOST_ADDR ) {
/* this is so that you can build a server that is the
"default" for any interface which isn't explicitly
specified. So that you can implement "deny anything
--- 1477,1484 ----
sar->host_addr.s_addr == server_ip.s_addr) &&
(sar->host_port == 0 || sar->host_port == port)) {
return virt;
! } else if ( sar->host_addr.s_addr == DEFAULT_VHOST_ADDR
! && (sar->host_port == 0 || sar->host_port == port)) {
/* this is so that you can build a server that is the
"default" for any interface which isn't explicitly
specified. So that you can implement "deny anything