aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/opcua/opcua_security_layer.c
diff options
context:
space:
mode:
authorHannes Mezger <hannes.mezger@ascolab.com>2014-09-17 15:36:59 +0200
committerMichael Mann <mmann78@netscape.net>2014-09-17 23:14:34 +0000
commit769a98498dda2c88986f9ed5442c82d2d6427268 (patch)
treeb7312cc4f839921afb44f1586bd91093ee3283d6 /plugins/opcua/opcua_security_layer.c
parentd8afd59b554e30c0063faa48b98703065c2057a3 (diff)
opcua: format all hf_register_info tables by aligning them to longest value
Change-Id: I0b533edd7bad52922dd1e0aaa2c980e56dd88b78 Reviewed-on: https://code.wireshark.org/review/4149 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'plugins/opcua/opcua_security_layer.c')
-rw-r--r--plugins/opcua/opcua_security_layer.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/plugins/opcua/opcua_security_layer.c b/plugins/opcua/opcua_security_layer.c
index b68f8aa36c..04a90b8a77 100644
--- a/plugins/opcua/opcua_security_layer.c
+++ b/plugins/opcua/opcua_security_layer.c
@@ -36,15 +36,10 @@ void registerSecurityLayerTypes(int proto)
{
static hf_register_info hf[] =
{
- { &hf_opcua_security_tokenid,
- { "Security Token Id", "security.tokenid", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
- },
- { &hf_opcua_security_seq,
- { "Security Sequence Number", "security.seq", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
- },
- { &hf_opcua_security_rqid,
- { "Security RequestId", "security.rqid", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
- }
+ /* id full name abbreviation type display strings bitmask blurb HFILL */
+ {&hf_opcua_security_tokenid, {"Security Token Id", "security.tokenid", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL}},
+ {&hf_opcua_security_seq, {"Security Sequence Number", "security.seq", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL}},
+ {&hf_opcua_security_rqid, {"Security RequestId", "security.rqid", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL}}
};
proto_register_field_array(proto, hf, array_length(hf));
}