summaryrefslogtreecommitdiff
path: root/plugins/opcua
diff options
context:
space:
mode:
authorHannes Mezger <hannes.mezger@ascolab.com>2015-12-07 17:56:22 +0100
committerMichael Mann <mmann78@netscape.net>2015-12-08 01:02:09 +0000
commit3a4d387658b9e8455ca645952a98c71d1b03b1a6 (patch)
tree62798eb7cf3855e6ea100cf75b3d3abea4c0d6eb /plugins/opcua
parent993690d1eeb3229dc981460426eb0b6288adb380 (diff)
downloadwireshark-3a4d387658b9e8455ca645952a98c71d1b03b1a6.tar.gz
opcua: fix order of ExpandedNodeId bits
Make fields appear from right to left bit instead of mixed Change-Id: I78152eab6901440f483b0af7d2395edebaa7ab3d Reviewed-on: https://code.wireshark.org/review/12469 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'plugins/opcua')
-rw-r--r--plugins/opcua/opcua_simpletypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/opcua/opcua_simpletypes.c b/plugins/opcua/opcua_simpletypes.c
index aca9ba2902..d597958535 100644
--- a/plugins/opcua/opcua_simpletypes.c
+++ b/plugins/opcua/opcua_simpletypes.c
@@ -1091,8 +1091,8 @@ void parseExtensionObject(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, g
void parseExpandedNodeId(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, gint *pOffset, const char *szFieldName)
{
static const int *expandednodeid_mask[] = {&hf_opcua_nodeid_encodingmask,
- &hf_opcua_expandednodeid_mask_namespaceuri,
&hf_opcua_expandednodeid_mask_serverindex,
+ &hf_opcua_expandednodeid_mask_namespaceuri,
NULL};
proto_item *ti;