You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by sh...@apache.org on 2016/01/20 18:04:24 UTC

trafficserver git commit: [TS-3881] Fix inconsistent return value and method name. This closes #429.

Repository: trafficserver
Updated Branches:
  refs/heads/master 56109f1c1 -> 7b4967ff6


[TS-3881] Fix inconsistent return value and method name. This closes #429.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/7b4967ff
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/7b4967ff
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/7b4967ff

Branch: refs/heads/master
Commit: 7b4967ff6d02bcdf5709fb76ef015fa5795f77d7
Parents: 56109f1
Author: Sudheer Vinukonda <su...@yahoo-inc.com>
Authored: Wed Jan 20 16:46:25 2016 +0000
Committer: shinrich <sh...@yahoo-inc.com>
Committed: Wed Jan 20 11:04:02 2016 -0600

----------------------------------------------------------------------
 iocore/cache/P_CacheInternal.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/7b4967ff/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();