From: Amos Jeffries Date: Fri, 27 Dec 2013 12:44:19 +0000 (-0800) Subject: Fix typo in client_side.cc parser result handling X-Git-Tag: merge-candidate-3-v1~506^2~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb158e2eee624610a6c2e2e59a4526cf159133f9;p=thirdparty%2Fsquid.git Fix typo in client_side.cc parser result handling --- diff --git a/src/client_side.cc b/src/client_side.cc index 5f7f300f48..c82f1fb9b5 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -2244,7 +2244,7 @@ parseHttpRequest(ConnStateData *csd, const Http::Http1ParserPointer &hp, HttpReq return NULL; } - if (parsedOk) + if (!parsedOk) return parseHttpRequestAbort(csd, "error:invalid-request"); }