jim 98/09/25 16:39:51
Modified: src/main http_config.c
Log:
On further thought, it really doesn't make
sense to return non-existant if access_name[0] is NULL, unless it's also what
ap_pcfg_openfile "returns" so we should back this out as well
Revision Changes Path
1.133 +1 -1 apache-1.3/src/main/http_config.c
Index: http_config.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_config.c,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- http_config.c 1998/09/25 22:49:38 1.132
+++ http_config.c 1998/09/25 23:39:50 1.133
@@ -1247,7 +1247,7 @@
*result = dc;
}
else {
- if (errno == ENOENT || errno == ENOTDIR || (!access_name[0]))
+ if (errno == ENOENT || errno == ENOTDIR)
dc = NULL;
else {
ap_log_rerror(APLOG_MARK, APLOG_CRIT, r,