]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug #1105: Cannot build Squid 3.0 on FreeBSD 4.10 with --enable-esi option
authorhno <>
Sun, 7 Nov 2004 05:24:22 +0000 (05:24 +0000)
committerhno <>
Sun, 7 Nov 2004 05:24:22 +0000 (05:24 +0000)
src/ESI.cc

index 7124f8b9ab14304a1002e4223fd70cb58c703217..c2b203f1c1dc899ec6384d22a57dfb601a0c7c84 100644 (file)
@@ -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()) {