From: rousskov <> Date: Tue, 18 Aug 1998 11:44:53 +0000 (+0000) Subject: - temporary fix to allow for \r\r\n in status lines X-Git-Tag: SQUID_3_0_PRE1~2859 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52639d068425bfa1d948882af0f0ec46bcdebce5;p=thirdparty%2Fsquid.git - temporary fix to allow for \r\r\n in status lines --- diff --git a/src/HttpReply.cc b/src/HttpReply.cc index 8f0660a789..f75067647e 100644 --- a/src/HttpReply.cc +++ b/src/HttpReply.cc @@ -1,6 +1,6 @@ /* - * $Id: HttpReply.cc,v 1.30 1998/08/14 19:25:11 wessels Exp $ + * $Id: HttpReply.cc,v 1.31 1998/08/18 05:44:53 rousskov Exp $ * * DEBUG: section 58 HTTP Reply (Response) * AUTHOR: Alex Rousskov @@ -377,7 +377,7 @@ httpReplyIsolateStart(const char **parse_start, const char **blk_start, const ch *blk_start = *parse_start; *blk_end = *blk_start + slen; - if (**blk_end == '\r') /* CR */ + while (**blk_end == '\r') /* CR */ (*blk_end)++; if (**blk_end == '\n') /* LF */ (*blk_end)++;