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:04:26 UTC

svn commit: r1771690 - /httpd/httpd/trunk/modules/http/http_filters.c

Author: rpluem
Date: Mon Nov 28 09:04:26 2016
New Revision: 1771690

URL: http://svn.apache.org/viewvc?rev=1771690&view=rev
Log:
* Fix numbers count in comment.

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

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=1771690&r1=1771689&r2=1771690&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Mon Nov 28 09:04:26 2016
@@ -86,8 +86,8 @@ typedef struct http_filter_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.
  */