/*
- * $Id: cache_cf.cc,v 1.115 1996/10/24 23:18:17 wessels Exp $
+ * $Id: cache_cf.cc,v 1.116 1996/10/24 23:29:37 wessels Exp $
*
* DEBUG: section 3 Configuration File Parsing
* AUTHOR: Harvest Derived
char ForwardedBy[256];
char w_space[] = " \t\n";
-static char null_string[] = "";
char config_input_line[BUFSIZ];
int config_lineno = 0;
/*
- * $Id: main.cc,v 1.103 1996/10/24 23:18:23 wessels Exp $
+ * $Id: main.cc,v 1.104 1996/10/24 23:29:39 wessels Exp $
*
* DEBUG: section 1 Startup and Main Loop
* AUTHOR: Harvest Derived
char appname[] = "squid";
char localhost[] = "127.0.0.1";
struct in_addr local_addr;
-char *dash_str = "-";
+char dash_str[] = "-";
+char null_string[] = "";
/* for error reporting from xmalloc and friends */
extern void (*failure_notify) _PARAMS((char *));
/*
- * $Id: squid.h,v 1.61 1996/10/19 07:08:37 wessels Exp $
+ * $Id: squid.h,v 1.62 1996/10/24 23:29:40 wessels Exp $
*
* AUTHOR: Duane Wessels
*
extern void ttlAddToForceList _PARAMS((char *, time_t, time_t));
extern int waisStart _PARAMS((int, char *, method_t, char *, StoreEntry *));
extern void storeDirClean _PARAMS((void));
-extern char *dash_str;
+extern char dash_str[];
+extern char null_string[];