From: oes Date: Tue, 12 Nov 2002 16:28:20 +0000 (+0000) Subject: Move unrelated variable declaration out of #ifdef FEATURE_ACL; fixes bug #636655 X-Git-Tag: v_3_0_1~82 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=fc577a5209d48c5010b03d5391121e7a9557fe1c;p=privoxy.git Move unrelated variable declaration out of #ifdef FEATURE_ACL; fixes bug #636655 --- diff --git a/loadcfg.c b/loadcfg.c index 36256e22..54ea6d6c 100644 --- a/loadcfg.c +++ b/loadcfg.c @@ -1,7 +1,7 @@ -const char loadcfg_rcs[] = "$Id: loadcfg.c,v 1.48 2002/05/14 21:30:38 oes Exp $"; +const char loadcfg_rcs[] = "$Id: loadcfg.c,v 1.48.2.1 2002/08/21 17:58:05 oes Exp $"; /********************************************************************* * - * File : $Source: /cvsroot/ijbswa//current/Attic/loadcfg.c,v $ + * File : $Source: /cvsroot/ijbswa/current/Attic/loadcfg.c,v $ * * Purpose : Loads settings from the configuration file into * global variables. This file contains both the @@ -35,6 +35,9 @@ const char loadcfg_rcs[] = "$Id: loadcfg.c,v 1.48 2002/05/14 21:30:38 oes Exp $" * * Revisions : * $Log: loadcfg.c,v $ + * Revision 1.48.2.1 2002/08/21 17:58:05 oes + * Temp kludge to let user and default action file be edited through win32 GUI (FR 592080) + * * Revision 1.48 2002/05/14 21:30:38 oes * savearg now uses own linking code instead of (now special-cased) add_help_link * @@ -452,9 +455,10 @@ void unload_configfile (void * data) { struct configuration_spec * config = (struct configuration_spec *)data; struct forward_spec *cur_fwd = config->forward; + int i; + #ifdef FEATURE_ACL struct access_control_list *cur_acl = config->acl; - int i; while (cur_acl != NULL) {