]> git.pld-linux.org Git - packages/squid.git/blame - squid-types.patch
- add squid-2.5.STABLE5-range_offset_limit.patch patch; rel 2
[packages/squid.git] / squid-types.patch
CommitLineData
53db920b
JR
1--- squid-3.0-PRE3/src/access_log.cc.bak 2004-02-18 16:12:33.000000000 +0100
2+++ squid-3.0-PRE3/src/access_log.cc 2004-02-18 16:17:53.000000000 +0100
3@@ -1557,7 +1557,7 @@
4 if (NULL == hash)
5 return;
6
7- fv = hash_lookup(hash, key);
8+ fv = (fvdb_entry *)hash_lookup(hash, key);
9
10 if (NULL == fv) {
11 fv = static_cast <fvdb_entry *>(xcalloc(1, sizeof(fvdb_entry)));
12@@ -1613,7 +1613,7 @@
13 void
14 fvdbFreeEntry(void *data)
15 {
16- fvdb_entry *fv = data;
17+ fvdb_entry *fv = (fvdb_entry *)data;
18 xfree(fv->hash.key);
19 xfree(fv);
20 }
This page took 0.033136 seconds and 4 git commands to generate.