]> git.pld-linux.org Git - packages/squid.git/blob - squid-types.patch
- add --with-auth-on-acceleration
[packages/squid.git] / squid-types.patch
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.088698 seconds and 3 git commands to generate.