Index: net_db.cc
===================================================================
RCS file: /cvsroot/squid/squid3/src/net_db.cc,v
retrieving revision 1.36
diff -u -r1.36 net_db.cc
--- net_db.cc	27 Dec 2007 15:51:03 -0000	1.36
+++ net_db.cc	29 Dec 2007 09:08:43 -0000
@@ -466,7 +466,7 @@
 static void
 netdbSaveState(void *foo)
 {
-    if (strcmp(config.netdbFilename, "none") == 0)
+    if (strcmp(Config.netdbFilename, "none") == 0)
 	return;
 
     Logfile *lf;
@@ -488,7 +488,7 @@
     lf = logfileOpen(Config.netdbFilename, 4096, 0);
 
     if (NULL == lf) {
-        debugs(50, 1, "netdbSaveState: " << path << ": " << xstrerror());
+        debugs(50, 1, "netdbSaveState: " << Config.netdbFilename << ": " << xstrerror());
         return;
     }
 
@@ -529,7 +529,7 @@
 static void
 netdbReloadState(void)
 {
-    if (strcmp(config.netdbFilename, "none") == 0)
+    if (strcmp(Config.netdbFilename, "none") == 0)
 	return;
 
     char *s;

