You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2016/08/11 23:24:47 UTC

svn commit: r1756064 - /httpd/httpd/trunk/modules/http/http_request.c

Author: ylavic
Date: Thu Aug 11 23:24:47 2016
New Revision: 1756064

URL: http://svn.apache.org/viewvc?rev=1756064&view=rev
Log:
http: follow up to r1750392.
Restore AP_MODE_READBYTES cleared inadvertently in r1756060.

Modified:
    httpd/httpd/trunk/modules/http/http_request.c

Modified: httpd/httpd/trunk/modules/http/http_request.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_request.c?rev=1756064&r1=1756063&r2=1756064&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_request.c (original)
+++ httpd/httpd/trunk/modules/http/http_request.c Thu Aug 11 23:24:47 2016
@@ -313,6 +313,7 @@ AP_DECLARE(apr_status_t) ap_check_pipeli
         else {
             if (buf[0] == APR_ASCII_LF) {
                 /* consume this LF */
+                mode = AP_MODE_READBYTES;
                 num_blank_lines++;
             }
             else if (buf[0] == APR_ASCII_CR) {