From: rousskov <> Date: Sat, 4 Apr 1998 14:47:53 +0000 (+0000) Subject: - changed "char" to "cache_key" in cacheDigestHashKey() X-Git-Tag: SQUID_3_0_PRE1~3627 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbbc3d093b9de18e64f7ef58be663bf2370f6c55;p=thirdparty%2Fsquid.git - changed "char" to "cache_key" in cacheDigestHashKey() --- diff --git a/src/CacheDigest.cc b/src/CacheDigest.cc index 5b3532abc7..68e4762a0c 100644 --- a/src/CacheDigest.cc +++ b/src/CacheDigest.cc @@ -1,6 +1,6 @@ /* - * $Id: CacheDigest.cc,v 1.8 1998/04/03 22:05:09 rousskov Exp $ + * $Id: CacheDigest.cc,v 1.9 1998/04/04 07:47:53 rousskov Exp $ * * DEBUG: section 70 Cache Digest * AUTHOR: Alex Rousskov @@ -40,7 +40,7 @@ typedef struct { } CacheDigestStats; /* local functions */ -static void cacheDigestHashKey(int bit_count, const char *key); +static void cacheDigestHashKey(int bit_count, const cache_key *key); /* configuration params */ static const int BitsPerEntry = 4; @@ -184,7 +184,7 @@ cacheDigestReport(CacheDigest *cd, const char *label, StoreEntry * e) } static void -cacheDigestHashKey(int bit_count, const char *key) +cacheDigestHashKey(int bit_count, const cache_key *key) { /* get four hashed values */ memcpy(hashed_keys, key, sizeof(hashed_keys));