Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 8655 invoked by uid 6000); 25 Sep 1998 23:39:54 -0000 Received: (qmail 8648 invoked by alias); 25 Sep 1998 23:39:52 -0000 Delivered-To: apache-1.3-cvs@hyperreal.org Received: (qmail 8646 invoked by uid 125); 25 Sep 1998 23:39:51 -0000 Date: 25 Sep 1998 23:39:51 -0000 Message-ID: <19980925233951.8645.qmail@hyperreal.org> From: jim@hyperreal.org To: apache-1.3-cvs@hyperreal.org Subject: cvs commit: apache-1.3/src/main http_config.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org 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,