瀏覽代碼

don't replace the namespace when setting a random nodeid

Julius Pfrommer 7 年之前
父節點
當前提交
6c8d7eaf0c
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      plugins/ua_nodestore_default.c

+ 0 - 2
plugins/ua_nodestore_default.c

@@ -330,8 +330,6 @@ UA_NodeMap_insertNode(void *context, UA_Node *node,
     if(tempNodeid.identifierType == UA_NODEIDTYPE_NUMERIC &&
        tempNodeid.identifier.numeric == 0) {
         /* create a random nodeid */
-        if(node->nodeId.namespaceIndex == 0)
-            node->nodeId.namespaceIndex = 1;
         UA_UInt32 identifier = ns->count+1; // start value
         UA_UInt32 size = ns->size;
         UA_UInt32 increase = mod2(identifier, size);