--------------------- PatchSet 5163 Date: 2007/08/05 23:26:42 Author: amosjeffries Branch: squid3-ipv6 Tag: (none) Log: Fix typo in legacy code DNSSERVERS. Members: src/ipcache.cc:1.9.2.36->1.9.2.37 Index: squid3/src/ipcache.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/ipcache.cc,v retrieving revision 1.9.2.36 retrieving revision 1.9.2.37 diff -u -r1.9.2.36 -r1.9.2.37 --- squid3/src/ipcache.cc 6 Jul 2007 10:50:48 -0000 1.9.2.36 +++ squid3/src/ipcache.cc 5 Aug 2007 23:26:42 -0000 1.9.2.37 @@ -1,6 +1,6 @@ /* - * $Id: ipcache.cc,v 1.9.2.36 2007/07/06 10:50:48 amosjeffries Exp $ + * $Id: ipcache.cc,v 1.9.2.37 2007/08/05 23:26:42 amosjeffries Exp $ * * DEBUG: section 14 IP Cache * AUTHOR: Harvest Derived @@ -354,7 +354,7 @@ for(int l = 0; l < ipcount; l++) i->addrs.in_addrs[l].SetEmpty(); // perform same init actions as constructor would. i->addrs.bad_mask = (unsigned char *)xcalloc(ipcount, sizeof(unsigned char)); - memset(i->addrs.bad_mask, 0 sizeof(unsigned char) * ipcount); + memset(i->addrs.bad_mask, 0, sizeof(unsigned char) * ipcount); for (j = 0, k = 0; k < ipcount; k++) { if ( A[k] = i->addrs.in_addrs[j] )