/*
- * $Id: globals.h,v 1.72 1998/11/25 09:00:21 wessels Exp $
+ * $Id: globals.h,v 1.73 1998/12/05 07:17:07 wessels Exp $
*
*
* SQUID Internet Object Cache http://squid.nlanr.net/Squid/
extern int RESERVED_FD;
extern int Squid_MaxFD; /* SQUID_MAXFD */
extern int config_lineno; /* 0 */
-extern int configured_once; /* 0 */
extern int debugLevels[MAX_DEBUG_SECTIONS];
extern int do_mallinfo; /* 0 */
extern int opt_reuseaddr; /* 1 */
/*
- * $Id: main.cc,v 1.279 1998/11/25 09:00:22 wessels Exp $
+ * $Id: main.cc,v 1.280 1998/12/05 07:17:06 wessels Exp $
*
* DEBUG: section 1 Startup and Main Loop
* AUTHOR: Harvest Derived
int parse_err;
if (!ConfigFile)
ConfigFile = xstrdup(DefaultConfigFile);
- if (!configured_once) { /* is it ever false? */
- cbdataInit();
- memInit(); /* memInit is required for config parsing */
- }
+ assert(!configured_once);
+ cbdataInit();
+ memInit(); /* memInit is required for config parsing */
parse_err = parseConfigFile(ConfigFile);
if (opt_parse_cfg_only)