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;