--------------------- PatchSet 1409 Date: 2005/05/22 14:41:38 Author: rmartinez Branch: squid3-ipv6 Tag: (none) Log: Fixing arbitrary string length constant. MAXIPSTRLEN is defined at config.h Members: src/structs.h:1.66.2.7->1.66.2.8 Index: squid3/src/structs.h =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/structs.h,v retrieving revision 1.66.2.7 retrieving revision 1.66.2.8 diff -u -r1.66.2.7 -r1.66.2.8 --- squid3/src/structs.h 25 Apr 2005 13:43:40 -0000 1.66.2.7 +++ squid3/src/structs.h 22 May 2005 14:41:38 -0000 1.66.2.8 @@ -1,6 +1,6 @@ /* - * $Id: structs.h,v 1.66.2.7 2005/04/25 13:43:40 rmartinez Exp $ + * $Id: structs.h,v 1.66.2.8 2005/05/22 14:41:38 rmartinez Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -1332,7 +1332,7 @@ struct _netdbEntry { hash_link hash; /* must be first */ - char network[16]; + char network[MAXIPSTRLEN]; int pings_sent; int pings_recv; double hops;