From 52639d068425bfa1d948882af0f0ec46bcdebce5 Mon Sep 17 00:00:00 2001 From: rousskov <> Date: Tue, 18 Aug 1998 11:44:53 +0000 Subject: [PATCH] - temporary fix to allow for \r\r\n in status lines --- src/HttpReply.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)++; -- 2.47.3