From: Jim Jagielski Date: Sat, 21 Nov 2015 13:47:42 +0000 (+0000) Subject: typo X-Git-Tag: 2.5.0-alpha~2624 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90442165b41bbe63c6fc69aff5eef035238fa925;p=thirdparty%2Fapache%2Fhttpd.git typo git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715524 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util.c b/server/util.c index 5679ff8c51c..89642a27ca2 100644 --- a/server/util.c +++ b/server/util.c @@ -3237,7 +3237,7 @@ AP_DECLARE(int) ap_strncasecmp(const char *s1, const char *s2, apr_size_t n) /* we know both end here */ return (0); } - } while (!--n); + } while (--n != 0); } return (0); }