Repository: trafficserver Updated Branches: refs/heads/ts3881 [created] 96ae1b7b4
[TS-3881] Fix inconsistent return value and method name. Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/96ae1b7b Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/96ae1b7b Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/96ae1b7b Branch: refs/heads/ts3881 Commit: 96ae1b7b42e590aabdec4f19586ae6f0fbe0719c Parents: 56109f1 Author: Sudheer Vinukonda <[email protected]> Authored: Wed Jan 20 16:46:25 2016 +0000 Committer: Sudheer Vinukonda <[email protected]> Committed: Wed Jan 20 16:46:25 2016 +0000 ---------------------------------------------------------------------- iocore/cache/P_CacheInternal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/96ae1b7b/iocore/cache/P_CacheInternal.h ---------------------------------------------------------------------- diff --git a/iocore/cache/P_CacheInternal.h b/iocore/cache/P_CacheInternal.h index b5a8548..922190e 100644 --- a/iocore/cache/P_CacheInternal.h +++ b/iocore/cache/P_CacheInternal.h @@ -281,7 +281,7 @@ struct CacheVC : public CacheVConnection { is_compressed_in_ram() const { ink_assert(vio.op == VIO::READ); - return !f.compressed_in_ram; + return f.compressed_in_ram; } bool writer_done();
