You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2013/03/09 01:48:36 UTC

[50/50] git commit: TS-1743 One more fix for the hashes

Updated Branches:
  refs/heads/3.3.x 618c87a7b -> f37995cfa


TS-1743 One more fix for the hashes


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

Branch: refs/heads/3.3.x
Commit: f37995cfa56fc40de0185c11bde85b54ff1909b0
Parents: dc3f8ff
Author: Leif Hedstrom <zw...@apache.org>
Authored: Fri Mar 8 15:16:54 2013 -0700
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Fri Mar 8 15:16:54 2013 -0700

----------------------------------------------------------------------
 proxy/logstats.cc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f37995cf/proxy/logstats.cc
----------------------------------------------------------------------
diff --git a/proxy/logstats.cc b/proxy/logstats.cc
index 7998949..2553a38 100644
--- a/proxy/logstats.cc
+++ b/proxy/logstats.cc
@@ -370,7 +370,7 @@ void  update_elapsed(ElapsedStats &stat, const int elapsed, const StatsCounter &
 class UrlLru
 {
   typedef list<UrlStats> LruStack;
-  typedef hash_map<const char *, LruStack::iterator, hash <const char *>, eqstr> LruHash;
+  typedef hash_map<const char *, LruStack::iterator, hash_fnv32, eqstr> LruHash;
 
 public:
   UrlLru(int size=1000000, int show_urls=0)