You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by su...@apache.org on 2015/04/06 22:14:21 UTC

trafficserver git commit: [TS-3450]: fix compile error

Repository: trafficserver
Updated Branches:
  refs/heads/master e84df9b08 -> 64b074bec


[TS-3450]: fix compile error


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

Branch: refs/heads/master
Commit: 64b074bec095c47bf011e26bd55f341fb1719358
Parents: e84df9b
Author: Sudheer Vinukonda <su...@yahoo-inc.com>
Authored: Mon Apr 6 20:14:06 2015 +0000
Committer: Sudheer Vinukonda <su...@yahoo-inc.com>
Committed: Mon Apr 6 20:14:06 2015 +0000

----------------------------------------------------------------------
 plugins/header_rewrite/factory.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/64b074be/plugins/header_rewrite/factory.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/factory.cc b/plugins/header_rewrite/factory.cc
index 0fb3c70..f279b43 100644
--- a/plugins/header_rewrite/factory.cc
+++ b/plugins/header_rewrite/factory.cc
@@ -110,7 +110,7 @@ condition_factory(const std::string &cond)
   } else if (c_name == "DBM") {
     c = new ConditionDBM();
   } else if (c_name == "INTERNAL-TRANSACTION") {
-    c = new ConditionInternalTransaction();
+    c = new ConditionInternalTxn();
   } else if (c_name == "INTERNAL-TXN") {
     c = new ConditionInternalTxn();
   } else if (c_name == "CLIENT-IP") {