Browse Source

Fix setting of v6AssignMode in controller.

Adam Ierymenko 9 years ago
parent
commit
35ac995d05
1 changed files with 2 additions and 2 deletions
  1. 2 2
      controller/EmbeddedNetworkController.cpp

+ 2 - 2
controller/EmbeddedNetworkController.cpp

@@ -1330,8 +1330,8 @@ unsigned int EmbeddedNetworkController::handleControlPlaneHttpPOST(
 						} else if (b["v6AssignMode"].is_object()) {
 							json &v6m = b["v6AssignMode"];
 							if (v6m.count("rfc4193")) nv6m["rfc4193"] = _jB(v6m["rfc4193"],false);
-							if (v6m.count("zt")) nv6m["rfc4193"] = _jB(v6m["zt"],false);
-							if (v6m.count("6plane")) nv6m["rfc4193"] = _jB(v6m["6plane"],false);
+							if (v6m.count("zt")) nv6m["zt"] = _jB(v6m["zt"],false);
+							if (v6m.count("6plane")) nv6m["6plane"] = _jB(v6m["6plane"],false);
 						}
 						if (!nv6m.count("rfc4193")) nv6m["rfc4193"] = false;
 						if (!nv6m.count("zt")) nv6m["zt"] = false;