Author: jfrederic.clere(a)jboss.com
Date: 2008-03-27 04:25:21 -0400 (Thu, 27 Mar 2008)
New Revision: 1471
Modified:
sandbox/httpd/src/native/common/host.c
Log:
Search the host using host and node only.
Modified: sandbox/httpd/src/native/common/host.c
===================================================================
--- sandbox/httpd/src/native/common/host.c 2008-03-27 08:24:09 UTC (rev 1470)
+++ sandbox/httpd/src/native/common/host.c 2008-03-27 08:25:21 UTC (rev 1471)
@@ -130,7 +130,7 @@
hostinfo_t *in = (hostinfo_t *)*data;
hostinfo_t *ou = (hostinfo_t *)mem;
- if (strcmp(in->host, ou->host) == 0 && in->vhost == ou->vhost
&& in->node == ou->node ) {
+ if (strcmp(in->host, ou->host) == 0 && in->node == ou->node ) {
*data = ou;
return APR_SUCCESS;
}
Show replies by date