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>
This commit is contained in:
Hannes Mezger 2015-12-07 17:56:22 +01:00 committed by Michael Mann
parent 993690d1ee
commit 3a4d387658
1 changed files with 1 additions and 1 deletions

View File

@ -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;