summaryrefslogtreecommitdiff
path: root/controller
diff options
context:
space:
mode:
Diffstat (limited to 'controller')
-rw-r--r--controller/EmbeddedNetworkController.cpp2
-rw-r--r--controller/JSONDB.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/controller/EmbeddedNetworkController.cpp b/controller/EmbeddedNetworkController.cpp
index 74937dd8..974936e4 100644
--- a/controller/EmbeddedNetworkController.cpp
+++ b/controller/EmbeddedNetworkController.cpp
@@ -889,7 +889,7 @@ unsigned int EmbeddedNetworkController::handleControlPlaneHttpPOST(
json &v6m = b["v6AssignMode"];
if (!nv6m.is_object()) nv6m = json::object();
if (v6m.is_string()) { // backward compatibility
- std::vector<std::string> v6ms(Utils::split(_jS(v6m,"").c_str(),",","",""));
+ std::vector<std::string> v6ms(OSUtils::split(_jS(v6m,"").c_str(),",","",""));
std::sort(v6ms.begin(),v6ms.end());
v6ms.erase(std::unique(v6ms.begin(),v6ms.end()),v6ms.end());
nv6m["rfc4193"] = false;
diff --git a/controller/JSONDB.cpp b/controller/JSONDB.cpp
index 6adc8a66..a9e9d05b 100644
--- a/controller/JSONDB.cpp
+++ b/controller/JSONDB.cpp
@@ -144,7 +144,7 @@ bool JSONDB::_isValidObjectName(const std::string &n)
std::string JSONDB::_genPath(const std::string &n,bool create)
{
- std::vector<std::string> pt(Utils::split(n.c_str(),"/","",""));
+ std::vector<std::string> pt(OSUtils::split(n.c_str(),"/","",""));
if (pt.size() == 0)
return std::string();