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
This commit is contained in:
William A. Rowe Jr
2016-08-18 15:47:23 +00:00
parent f2035757d3
commit 1877fd6e15

View File

@ -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"))) {