--------------------- PatchSet 11278 Date: 2007/02/27 19:36:37 Author: serassio Branch: HEAD Tag: (none) Log: Windows port: Fix compile error using Visual Studio 6 Members: src/HttpReply.c:1.60->1.61 Index: squid/src/HttpReply.c =================================================================== RCS file: /cvsroot/squid/squid/src/HttpReply.c,v retrieving revision 1.60 retrieving revision 1.61 diff -u -r1.60 -r1.61 --- squid/src/HttpReply.c 26 Feb 2007 09:11:10 -0000 1.60 +++ squid/src/HttpReply.c 27 Feb 2007 19:36:37 -0000 1.61 @@ -1,6 +1,6 @@ /* - * $Id: HttpReply.c,v 1.60 2007/02/26 09:11:10 hno Exp $ + * $Id: HttpReply.c,v 1.61 2007/02/27 19:36:37 serassio Exp $ * * DEBUG: section 58 HTTP Reply (Response) * AUTHOR: Alex Rousskov @@ -224,9 +224,9 @@ const char *ctype, squid_off_t clen, time_t lmt, time_t expires) { HttpHeader *hdr; - assert(reply); static const http_version_t ver = {1, 0}; + assert(reply); httpStatusLineSet(&reply->sline, ver, status, reason); hdr = &reply->header; httpHeaderPutStr(hdr, HDR_SERVER, visible_appname_string);