--------------------- PatchSet 4434 Date: 2007/05/01 16:49:31 Author: dwsquid Branch: squid3-largeobj Tag: (none) Log: remove (int) cast of content-length arg to HttpReply::setHeaders() Members: src/mime.cc:1.22.6.2->1.22.6.3 Index: squid3/src/mime.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/mime.cc,v retrieving revision 1.22.6.2 retrieving revision 1.22.6.3 diff -u -r1.22.6.2 -r1.22.6.3 --- squid3/src/mime.cc 30 Apr 2007 17:08:15 -0000 1.22.6.2 +++ squid3/src/mime.cc 1 May 2007 16:49:31 -0000 1.22.6.3 @@ -1,6 +1,6 @@ /* - * $Id: mime.cc,v 1.22.6.2 2007/04/30 17:08:15 dwsquid Exp $ + * $Id: mime.cc,v 1.22.6.3 2007/05/01 16:49:31 dwsquid Exp $ * * DEBUG: section 25 MIME Parsing * AUTHOR: Harvest Derived @@ -586,7 +586,7 @@ HttpVersion version(1, 0); reply->setHeaders(version, HTTP_OK, NULL, - mimeGetContentType(icon), (int) sb.st_size, sb.st_mtime, -1); + mimeGetContentType(icon), sb.st_size, sb.st_mtime, -1); reply->cache_control = httpHdrCcCreate();