From: William A. Rowe Jr Date: Thu, 18 Aug 2016 15:47:23 +0000 (+0000) Subject: Drop redundant == --rrl_none evaluation, noted by rpluem X-Git-Tag: 2.5.0-alpha~1262 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1877fd6e15e529b024e12117d76e24ca35586be3;p=thirdparty%2Fapache%2Fhttpd.git Drop redundant == --rrl_none evaluation, noted by rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1756823 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 068055e934a..55df5f09ba0 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -680,8 +680,7 @@ static int read_request_line(request_rec *r, apr_bucket_brigade *bb) goto rrl_done; } for (r->protocol = ll; apr_isspace(*r->protocol); ++r->protocol) - if (strchr(badwhitespace, *r->protocol) && deferred_error == rrl_none - && deferred_error == rrl_none) + if (strchr(badwhitespace, *r->protocol) && deferred_error == rrl_none) deferred_error = rrl_badwhitespace; *ll = '\0'; if (!(ll = strpbrk(r->protocol, " \t\n\v\f\r"))) {