dgaudet 98/03/06 11:49:13
Modified: src/main http_vhost.c
Log:
tweak warnings for vhost stuff
Revision Changes Path
1.10 +3 -2 apache-1.3/src/main/http_vhost.c
Index: http_vhost.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_vhost.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- http_vhost.c 1998/03/02 17:53:47 1.9
+++ http_vhost.c 1998/03/06 19:49:12 1.10
@@ -494,14 +494,15 @@
"VirtualHost %s:%u -- mixing * "
"ports and non-* ports with "
"a NameVirtualHost address is not supported,"
- " you will get undefined behaviour",
+ " proceeding with undefined results",
sar->virthost, sar->host_port);
}
}
else if (ic) {
aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, main_s,
"VirtualHost %s:%u overlaps with "
- "VirtualHost %s:%u, the first has precedence",
+ "VirtualHost %s:%u, the first has precedence, "
+ "perhaps you need a NameVirtualHost directive",
sar->virthost, sar->host_port,
ic->sar->virthost, ic->sar->host_port);
ic->sar = sar;