]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
- temporary fix to allow for \r\r\n in status lines
authorrousskov <>
Tue, 18 Aug 1998 11:44:53 +0000 (11:44 +0000)
committerrousskov <>
Tue, 18 Aug 1998 11:44:53 +0000 (11:44 +0000)
src/HttpReply.cc

index 8f0660a7892e2a6b3ce12e4af3a1905ee2bb2d3a..f75067647e936a49481ec2f9267e0278287a3d1f 100644 (file)
@@ -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)++;