summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorHannes Mezger <hannes.mezger@ascolab.com>2014-12-08 11:20:16 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2014-12-08 10:43:43 +0000
commit0bd79c548e5ecfd78bec6aa1ce3167d0aa0baae2 (patch)
tree02e7f9d549bc475a4a14205cd5fb654f3352e9e2 /plugins
parent52df6efa6893d472d08b99514ec5f1376d75d89e (diff)
downloadwireshark-0bd79c548e5ecfd78bec6aa1ce3167d0aa0baae2.tar.gz
Fix full name of NodeId namespace index field, was a copy&pase error
Change-Id: I7b1eea9965880e35c65f04406ff756d245b568d4 Reviewed-on: https://code.wireshark.org/review/5668 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/opcua/opcua_application_layer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/opcua/opcua_application_layer.c b/plugins/opcua/opcua_application_layer.c
index 3ec3e16e3c..943d415639 100644
--- a/plugins/opcua/opcua_application_layer.c
+++ b/plugins/opcua/opcua_application_layer.c
@@ -52,7 +52,7 @@ void registerApplicationLayerTypes(int proto)
{
/* id full name abbreviation type display strings bitmask blurb HFILL */
{&hf_opcua_nodeid_encodingmask, {"NodeId EncodingMask", "opcua.servicenodeid.encodingmask", FT_UINT8, BASE_HEX, VALS(g_nodeidmasks), 0x0, NULL, HFILL}},
- {&hf_opcua_app_nsid, {"NodeId EncodingMask", "opcua.servicenodeid.nsid", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL}},
+ {&hf_opcua_app_nsid, {"NodeId Namespace Index", "opcua.servicenodeid.nsid", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL}},
{&hf_opcua_app_numeric, {"NodeId Identifier Numeric", "opcua.servicenodeid.numeric", FT_UINT32, BASE_DEC, VALS(g_requesttypes), 0x0, NULL, HFILL}}
};