Repository: trafficserver Updated Branches: refs/heads/master e7e8a9084 -> 8d2582941
[TS-3121] - Fixing the incorrect condition checking Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/8d258294 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/8d258294 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/8d258294 Branch: refs/heads/master Commit: 8d2582941566f7602c1d11900684880060f8a789 Parents: e7e8a90 Author: Sudheer Vinukonda <[email protected]> Authored: Wed Oct 8 16:23:52 2014 +0000 Committer: Sudheer Vinukonda <[email protected]> Committed: Wed Oct 8 16:23:52 2014 +0000 ---------------------------------------------------------------------- proxy/spdy/SpdyClientSession.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/8d258294/proxy/spdy/SpdyClientSession.cc ---------------------------------------------------------------------- diff --git a/proxy/spdy/SpdyClientSession.cc b/proxy/spdy/SpdyClientSession.cc index 6338022..2c475b7 100644 --- a/proxy/spdy/SpdyClientSession.cc +++ b/proxy/spdy/SpdyClientSession.cc @@ -364,7 +364,7 @@ spdy_process_fetch_header(TSEvent /*event*/, SpdyClientSession *sm, TSFetchSM fe SpdyNV spdy_nv(fetch_sm); - if (spdy_nv.is_valid_response()) { + if (!spdy_nv.is_valid_response()) { Debug("spdy_error", "----spdy_process_fetch_header, invalid http response"); return -1; }
