From: wessels <> Date: Fri, 23 Dec 2005 04:29:22 +0000 (+0000) Subject: RFC 3507 says that there should be a space after comma in X-Git-Tag: SQUID_3_0_PRE4~439 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7cab7e9f4b17462ae83cc30fcaa96cd76c122a3d;p=thirdparty%2Fsquid.git RFC 3507 says that there should be a space after comma in the Encapsulated list. --- diff --git a/src/ICAP/ICAPModXact.cc b/src/ICAP/ICAPModXact.cc index cc184f5d36..0632f2d614 100644 --- a/src/ICAP/ICAPModXact.cc +++ b/src/ICAP/ICAPModXact.cc @@ -958,7 +958,7 @@ void ICAPModXact::makeRequestHeaders(MemBuf &buf) void ICAPModXact::encapsulateHead(MemBuf &icapBuf, const char *section, MemBuf &httpBuf, const HttpMsg *head) { // update ICAP header - icapBuf.Printf("%s=%d,", section, (int) httpBuf.contentSize()); + icapBuf.Printf("%s=%d, ", section, (int) httpBuf.contentSize()); // pack HTTP head packHead(httpBuf, head);