--------------------- PatchSet 10253 Date: 2007/12/15 20:09:57 Author: serassio Branch: nt Tag: (none) Log: Fixed build error Members: src/store_key_md5.c:1.7.2.3->1.7.2.4 Index: squid/src/store_key_md5.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/store_key_md5.c,v retrieving revision 1.7.2.3 retrieving revision 1.7.2.4 diff -u -r1.7.2.3 -r1.7.2.4 --- squid/src/store_key_md5.c 17 Nov 2007 19:15:16 -0000 1.7.2.3 +++ squid/src/store_key_md5.c 15 Dec 2007 20:09:57 -0000 1.7.2.4 @@ -1,6 +1,6 @@ /* - * $Id: store_key_md5.c,v 1.7.2.3 2007/11/17 19:15:16 serassio Exp $ + * $Id: store_key_md5.c,v 1.7.2.4 2007/12/15 20:09:57 serassio Exp $ * * DEBUG: section 20 Storage Manager MD5 Cache Keys * AUTHOR: Duane Wessels @@ -132,6 +132,7 @@ static cache_key digest[MD5_DIGEST_CHARS]; unsigned char m = (unsigned char) method; const char *url; + MD5_CTX M; if (request->store_url) { url = request->store_url; @@ -139,7 +140,6 @@ url = urlCanonical(request); } - MD5_CTX M; MD5Init(&M); MD5Update(&M, &m, sizeof(m)); MD5Update(&M, (unsigned char *) url, strlen(url));