]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r1771690 from trunk:
authorRuediger Pluem <rpluem@apache.org>
Mon, 28 Nov 2016 09:59:00 +0000 (09:59 +0000)
committerRuediger Pluem <rpluem@apache.org>
Mon, 28 Nov 2016 09:59:00 +0000 (09:59 +0000)
* Fix numbers count in comment.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x-merge-http-strict@1771697 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_filters.c

index 5e567eba5c409b0319cc4b1a799db2d3bed5a7d4..8503067682c494f4d3e36482cf1254044743e535 100644 (file)
@@ -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.
- *  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
+ *  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
  *     caused only the sign bit to flip, then APR_ENOSPC is returned.
  * A negative chunk length always indicates an overflow error.
  */