summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2016-11-28 09:56:42 +0000
committerRuediger Pluem <rpluem@apache.org>2016-11-28 09:56:42 +0000
commitb0ae0d96fbc64c2779146b73d02777e96602df6e (patch)
tree2656cc21fa303a3632d9c059a60d3c11182d59b8
parent08a4c912945ac6528c93ac2f1350ce0d5bb2a932 (diff)
downloadhttpd-b0ae0d96fbc64c2779146b73d02777e96602df6e.tar.gz
* Revert 1771372: As Bill points out correctly. Only backport trunk revisions to this branch.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x-merge-http-strict@1771696 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/http/http_filters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c
index 8503067682..5e567eba5c 100644
--- a/modules/http/http_filters.c
+++ b/modules/http/http_filters.c
@@ -128,8 +128,8 @@ static apr_status_t bail_out_on_error(http_ctx_t *ctx,
* 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.
*/