浏览代码

allow adding of namespaces via the write service

Julius Pfrommer 7 年之前
父节点
当前提交
592815f7db
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/server/ua_server.c

+ 1 - 0
src/server/ua_server.c

@@ -406,6 +406,7 @@ writeNamespaces(void *handle, const UA_NodeId nodeid, const UA_Variant *data,
     /* Add namespaces */
     for(size_t i = server->namespacesSize; i < newNamespacesSize; ++i)
         addNamespace(server, newNamespaces[i]);
+
     return UA_STATUSCODE_GOOD;
 }