Browse Source

allow adding of namespaces via the write service

Julius Pfrommer 7 years ago
parent
commit
592815f7db
1 changed files with 1 additions and 0 deletions
  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;
 }