From: Ruediger Pluem Date: Mon, 28 Nov 2016 09:04:26 +0000 (+0000) Subject: * Fix numbers count in comment. X-Git-Tag: 2.5.0-alpha~968 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9858526f1f579d92d65013d2e1ec3f96383a431b;p=thirdparty%2Fapache%2Fhttpd.git * Fix numbers count in comment. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1771690 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 42f4a4f525b..3971e3d10ee 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -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. */