]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
debugging fix
authorwessels <>
Fri, 20 Nov 1998 12:16:27 +0000 (12:16 +0000)
committerwessels <>
Fri, 20 Nov 1998 12:16:27 +0000 (12:16 +0000)
src/fqdncache.cc
src/ipcache.cc

index d7847a3ddbfa65958941c70de9083724f080429b..874c06007df6ac4a66c5b64e3f6ebcef32096f57 100644 (file)
@@ -1,7 +1,7 @@
 
 
 /*
- * $Id: fqdncache.cc,v 1.123 1998/11/17 23:16:47 glenn Exp $
+ * $Id: fqdncache.cc,v 1.124 1998/11/20 05:16:27 wessels Exp $
  *
  * DEBUG: section 35    FQDN Cache
  * AUTHOR: Harvest Derived
@@ -229,7 +229,7 @@ fqdncacheParse(const char *inbuf)
     static fqdncache_entry f;
     int ttl;
     xstrncpy(buf, inbuf, DNS_INBUF_SZ);
-    debug(35, 5) ("fqdncacheParse: parsing:\n%s", buf);
+    debug(35, 5) ("fqdncacheParse: parsing: {%s}\n", buf);
     memset(&f, '\0', sizeof(f));
     f.expires = squid_curtime;
     f.status = FQDN_NEGATIVE_CACHED;
index a59b28c5e65fa9f5e812cbc2fe30f8851370c66e..7876f7c6b41a63b969c86107b49b8288ba6ff847 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ipcache.cc,v 1.207 1998/11/17 23:16:48 glenn Exp $
+ * $Id: ipcache.cc,v 1.208 1998/11/20 05:16:29 wessels Exp $
  *
  * DEBUG: section 14    IP Cache
  * AUTHOR: Harvest Derived
@@ -273,7 +273,7 @@ ipcacheParse(const char *inbuf)
        return &i;
     }
     xstrncpy(buf, inbuf, DNS_INBUF_SZ);
-    debug(14, 5) ("ipcacheParse: parsing:%s\n", buf);
+    debug(14, 5) ("ipcacheParse: parsing: {%s}\n", buf);
     token = strtok(buf, w_space);
     if (NULL == token) {
        debug(14, 1) ("ipcacheParse: Got <NULL>, expecting '$addr'\n");