set best-route strategy correctly

refs: #3696

Change-Id: Ia9285e7261167f511c7193b09f37023b68a39eeb
diff --git a/bin/minindn b/bin/minindn
index d70cc2f..c8530e6 100755
--- a/bin/minindn
+++ b/bin/minindn
@@ -359,7 +359,7 @@
             "nodes": nodes,
             "ctime": options.ctime,
             "nPings": options.nPings,
-            "strategy": Nfd.STRATEGY_BEST_ROUTE_V3,
+            "strategy": Nfd.STRATEGY_BEST_ROUTE,
             "pctTraffic": options.pctTraffic
         }
 
diff --git a/ndn/nfd.py b/ndn/nfd.py
index 36dcf96..45f873a 100644
--- a/ndn/nfd.py
+++ b/ndn/nfd.py
@@ -1,6 +1,6 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015 The University of Memphis,
+# Copyright (C) 2016 The University of Memphis,
 #                    Arizona Board of Regents,
 #                    Regents of the University of California.
 #
@@ -25,7 +25,7 @@
 from ndn.ndn_application import NdnApplication
 
 class Nfd(NdnApplication):
-    STRATEGY_BEST_ROUTE_V3 = "best-route/%FD%03"
+    STRATEGY_BEST_ROUTE = "best-route"
     STRATEGY_NCC = "ncc"
 
     def __init__(self, node):