From: hno <> Date: Sun, 7 Nov 2004 05:24:22 +0000 (+0000) Subject: Bug #1105: Cannot build Squid 3.0 on FreeBSD 4.10 with --enable-esi option X-Git-Tag: SQUID_3_0_PRE4~998 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=768ab0fc61a79cac96ca0ca54736f0feefeb9b7a;p=thirdparty%2Fsquid.git Bug #1105: Cannot build Squid 3.0 on FreeBSD 4.10 with --enable-esi option --- diff --git a/src/ESI.cc b/src/ESI.cc index 7124f8b9ab..c2b203f1c1 100644 --- a/src/ESI.cc +++ b/src/ESI.cc @@ -1,6 +1,6 @@ /* - * $Id: ESI.cc,v 1.8 2004/08/30 05:12:31 robertc Exp $ + * $Id: ESI.cc,v 1.9 2004/11/06 22:24:22 hno Exp $ * * DEBUG: section 86 ESI processing * AUTHOR: Robert Collins @@ -788,7 +788,7 @@ esiProcessStream (clientStreamNode *thisNode, clientHttpRequest *http, HttpReply /* Increase our buffer area with incoming data */ assert (recievedData.length <= HTTP_REQBUF_SZ); assert (thisNode->readBuffer.offset == recievedData.offset); - debug (86,5)("esiProcessStream found %u bytes of body data at offset %ld\n", recievedData.length, recievedData.offset); + debug (86,5)("esiProcessStream found %u bytes of body data at offset %ld\n", recievedData.length, (long)recievedData.offset); /* secure the data for later use */ if (!context->incoming.getRaw()) {