- Removed check for "\r\n" in icpRead, use 'immed' flag instead
- Invented request_t struct and urlParse to avoid sscanf'ing
the URL string too often.
+
+alpha19
+ - Fixed problem with free()'ing config_file.
-/* $Id: cache_cf.cc,v 1.49 1996/04/16 20:53:33 wessels Exp $ */
+/* $Id: cache_cf.cc,v 1.50 1996/04/16 22:52:04 wessels Exp $ */
/* DEBUG: Section 3 cache_cf: Configuration file parsing */
int single_parent_bypass = 0;
int DnsPositiveTtl = DefaultPositiveDnsTtl;
char *DefaultSwapDir = DEFAULT_SWAP_DIR;
-char *config_file = DEFAULT_CONFIG_FILE;
+char *config_file = xstrdup(DEFAULT_CONFIG_FILE);
char *cfg_filename = NULL; /* just the last part */
char w_space[] = " \t\n";