You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2016/11/28 09:56:42 UTC

svn commit: r1771696 - /httpd/httpd/branches/2.4.x-merge-http-strict/modules/http/http_filters.c

Author: rpluem
Date: Mon Nov 28 09:56:42 2016
New Revision: 1771696

URL: http://svn.apache.org/viewvc?rev=1771696&view=rev
Log:
* Revert 1771372: As Bill points out correctly. Only backport trunk revisions to this branch.

Modified:
    httpd/httpd/branches/2.4.x-merge-http-strict/modules/http/http_filters.c

Modified: httpd/httpd/branches/2.4.x-merge-http-strict/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x-merge-http-strict/modules/http/http_filters.c?rev=1771696&r1=1771695&r2=1771696&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x-merge-http-strict/modules/http/http_filters.c (original)
+++ httpd/httpd/branches/2.4.x-merge-http-strict/modules/http/http_filters.c Mon Nov 28 09:56:42 2016
@@ -128,8 +128,8 @@ static apr_status_t bail_out_on_error(ht
  * Parse a chunk line with optional extension, detect overflow.
  * There are several error cases:
  *  1) If the chunk link is misformatted, APR_EINVAL is returned.
- *  2) If the conversion would require too many bits, APR_EGENERAL is returned.
- *  3) If the conversion used the correct number of bits, but an overflow
+ *  1) If the conversion would require too many bits, APR_EGENERAL is returned.
+ *  2) If the conversion used the correct number of bits, but an overflow
  *     caused only the sign bit to flip, then APR_ENOSPC is returned.
  * A negative chunk length always indicates an overflow error.
  */