/*
- * $Id: net_db.cc,v 1.200 2007/12/27 14:55:47 hno Exp $
+ * $Id: net_db.cc,v 1.201 2007/12/29 18:15:45 hno Exp $
*
* DEBUG: section 38 Network Measurement Database
* AUTHOR: Duane Wessels
static void
netdbSaveState(void *foo)
{
- if (strcmp(config.netdbFilename, "none") == 0)
+ if (strcmp(Config.netdbFilename, "none") == 0)
return;
Logfile *lf;
lf = logfileOpen(Config.netdbFilename, 4096, 0);
if (NULL == lf) {
- debugs(50, 1, "netdbSaveState: " << path << ": " << xstrerror());
+ debugs(50, 1, "netdbSaveState: " << Config.netdbFilename << ": " << xstrerror());
return;
}
static void
netdbReloadState(void)
{
- if (strcmp(config.netdbFilename, "none") == 0)
+ if (strcmp(Config.netdbFilename, "none") == 0)
return;
char *s;