]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
missing squid-internal-periodic
authorwessels <>
Wed, 6 May 1998 05:01:25 +0000 (05:01 +0000)
committerwessels <>
Wed, 6 May 1998 05:01:25 +0000 (05:01 +0000)
src/peer_digest.cc
src/store_digest.cc

index 650be4570bcb47fd16269217d4c491e9267b044d..22df1fc64b4929ef651b5c71dcf29cb0d4bf4b48 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: peer_digest.cc,v 1.21 1998/05/05 05:36:34 wessels Exp $
+ * $Id: peer_digest.cc,v 1.22 1998/05/05 23:01:25 wessels Exp $
  *
  * DEBUG: section 72    Peer Digest Routines
  * AUTHOR: Alex Rousskov
@@ -236,7 +236,7 @@ peerDigestRequest(peer * p)
     assert(p);
     EBIT_SET(p->digest.flags, PD_REQUESTED);
     /* compute future request components */
-    url = internalRemoteUri(p->host, p->http_port, "", StoreDigestUrlPath);
+    url = internalRemoteUri(p->host, p->http_port, "/squid-internal-periodic/", StoreDigestUrlPath);
     key = storeKeyPublic(url, METHOD_GET);
     debug(72, 2) ("peerDigestRequest: %s key: %s\n", url, storeKeyText(key));
     req = requestLink(urlParse(METHOD_GET, url));
index fe57c92170c29365bc732b46e7ec3b101b8a5f3d..ecfa7e9a9ffd9a2f907d8f2d0d90c5ef00c65126 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: store_digest.cc,v 1.12 1998/05/05 03:50:01 wessels Exp $
+ * $Id: store_digest.cc,v 1.13 1998/05/05 23:02:50 wessels Exp $
  *
  * DEBUG: section 71    Store Digest Manager
  * AUTHOR: Alex Rousskov
@@ -258,7 +258,7 @@ storeDigestRewriteStart(void *datanotused)
     }
     debug(71, 2) ("storeDigestRewrite: start rewrite #%d\n", sd_state.rewrite_count + 1);
     /* make new store entry */
-    url = internalLocalUri(NULL, StoreDigestUrlPath);
+    url = internalLocalUri("/squid-internal-periodic/", StoreDigestUrlPath);
     flags = 0;
     EBIT_SET(flags, REQ_CACHABLE);
     sd_state.rewrite_lock = e = storeCreateEntry(url, url, flags, METHOD_GET);