fw: remove reliance upon marker name components

refs #5044

Change-Id: Iea6c98e03dbd3e4463f7bb6fca0be4953a2cdc40
diff --git a/daemon/fw/best-route-strategy.cpp b/daemon/fw/best-route-strategy.cpp
index 11ae600..e684250 100644
--- a/daemon/fw/best-route-strategy.cpp
+++ b/daemon/fw/best-route-strategy.cpp
@@ -57,7 +57,7 @@
 const Name&
 BestRouteStrategy::getStrategyName()
 {
-  static Name strategyName("/localhost/nfd/strategy/best-route/%FD%05");
+  static const auto strategyName = Name("/localhost/nfd/strategy/best-route").appendVersion(5);
   return strategyName;
 }