--------------------- PatchSet 6255 Date: 2004/08/04 17:02:25 Author: dwsquid Branch: icap-2_5 Tag: (none) Log: Patch from olivier - Use crlf instead of "\r\n" since we went to the trouble of creating it Members: src/icap_respmod.c:1.1.2.35->1.1.2.36 Index: squid/src/icap_respmod.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/Attic/icap_respmod.c,v retrieving revision 1.1.2.35 retrieving revision 1.1.2.36 diff -u -r1.1.2.35 -r1.1.2.36 --- squid/src/icap_respmod.c 4 Aug 2004 16:59:58 -0000 1.1.2.35 +++ squid/src/icap_respmod.c 4 Aug 2004 17:02:25 -0000 1.1.2.36 @@ -1,6 +1,6 @@ /* - * $Id: icap_respmod.c,v 1.1.2.35 2004/08/04 16:59:58 dwsquid Exp $ + * $Id: icap_respmod.c,v 1.1.2.36 2004/08/04 17:02:25 dwsquid Exp $ * * DEBUG: section 81 Internet Content Adaptation Protocol (ICAP) Client * AUTHOR: Geetha Manjunath, Hewlett Packard Company @@ -59,7 +59,7 @@ else memBufPrintf(mb, ", null-body=%1d", -o3); - memBufPrintf(mb, "\r\n"); + memBufPrintf(mb, crlf); if (Config.icapcfg.send_client_ip) { memBufPrintf(mb, "X-Client-IP: %s\r\n", client_addr); }