aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorDavid Perry <boolean263@protonmail.com>2023-04-18 14:21:12 -0400
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2023-04-20 08:12:38 +0000
commit7bc9ff313512c6bc17cc511ca1d304672e935f3a (patch)
tree550b1b2e3da2d4884869502d59e9869ccf1be61a /plugins
parent3cc9d33f65ef3e009721964e6b0af5dea2ee58bc (diff)
OpcUa: ExtensionObject.TypeId is NodeId
As per #18868, the ExtensionObject.TypeId should be parsed as a NodeId, not as an ExpandedNodeId.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/epan/opcua/opcua_simpletypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/epan/opcua/opcua_simpletypes.c b/plugins/epan/opcua/opcua_simpletypes.c
index 59397889ca..e913ac699f 100644
--- a/plugins/epan/opcua/opcua_simpletypes.c
+++ b/plugins/epan/opcua/opcua_simpletypes.c
@@ -1218,7 +1218,7 @@ void parseExtensionObject(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, g
/* add nodeid subtree */
TypeId = getExtensionObjectType(tvb, &iOffset);
- parseExpandedNodeId(extobj_tree, tvb, pinfo, &iOffset, "TypeId");
+ parseNodeId(extobj_tree, tvb, pinfo, &iOffset, "TypeId");
/* parse encoding mask */
EncodingMask = tvb_get_guint8(tvb, iOffset);