Received: (from majordom@localhost) by hyperreal.org (8.8.5/8.8.5) id WAA14323; Sun, 3 Aug 1997 22:14:29 -0700 (PDT) Received: (from dgaudet@localhost) by hyperreal.org (8.8.5/8.8.5) id WAA14315 for apache-cvs; Sun, 3 Aug 1997 22:14:27 -0700 (PDT) Date: Sun, 3 Aug 1997 22:14:27 -0700 (PDT) From: Dean Gaudet Message-Id: <199708040514.WAA14315@hyperreal.org> To: apache-cvs@hyperreal.org Subject: cvs commit: apache/src http_request.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org dgaudet 97/08/03 22:14:26 Modified: src http_request.c Log: make it a little more obvious that this_conf is only used inside the inner loop. Revision Changes Path 1.68 +2 -1 apache/src/http_request.c Index: http_request.c =================================================================== RCS file: /export/home/cvs/apache/src/http_request.c,v retrieving revision 1.67 retrieving revision 1.68 diff -u -r1.67 -r1.68 --- http_request.c 1997/08/01 08:01:21 1.67 +++ http_request.c 1997/08/04 05:14:26 1.68 @@ -349,7 +349,7 @@ core_dir_config *core_dir = (core_dir_config *)get_module_config(per_dir_defaults, &core_module); int overrides_here; - void *this_conf, *htaccess_conf = NULL; + void *htaccess_conf = NULL; char *test_dirname_tail; int j; @@ -373,6 +373,7 @@ void *entry_config = sec[j]; core_dir_config *entry_core; char *entry_dir; + void *this_conf; if (!entry_config) continue;