aboutsummaryrefslogtreecommitdiffstats
path: root/packet-cgmp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-18 02:18:27 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-18 02:18:27 +0000
commitecadcda85dc61d927369fbc4a808f4b5767239d6 (patch)
tree90c18fd2b2f7ddb3e9eac08059e59c3e0068f743 /packet-cgmp.c
parent89bc50802cc54053da815c4e153b4a8c924a8c61 (diff)
From Joerg Mayer: explicitly fill in all members of a
"header_field_info" structure, including the ones that are later set by the routines to register fields. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3561 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-cgmp.c')
-rw-r--r--packet-cgmp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/packet-cgmp.c b/packet-cgmp.c
index 9a5d50baba..2fa52de732 100644
--- a/packet-cgmp.c
+++ b/packet-cgmp.c
@@ -1,7 +1,7 @@
/* packet-cgmp.c
* Routines for the disassembly of the Cisco Group Management Protocol
*
- * $Id: packet-cgmp.c,v 1.9 2001/01/25 06:14:13 guy Exp $
+ * $Id: packet-cgmp.c,v 1.10 2001/06/18 02:17:45 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -109,23 +109,23 @@ proto_register_cgmp(void)
static hf_register_info hf[] = {
{ &hf_cgmp_version,
{ "Version", "cgmp.version", FT_UINT8, BASE_DEC, NULL, 0xF0,
- "" }},
+ "", HFILL }},
{ &hf_cgmp_type,
{ "Type", "cgmp.type", FT_UINT8, BASE_DEC, VALS(type_vals), 0x0F,
- "" }},
+ "", HFILL }},
{ &hf_cgmp_count,
{ "Count", "cgmp.count", FT_UINT8, BASE_DEC, NULL, 0x0,
- "" }},
+ "", HFILL }},
{ &hf_cgmp_gda,
{ "Group Destination Address", "cgmp.gda", FT_ETHER, BASE_NONE, NULL, 0x0,
- "Group Destination Address" }},
+ "Group Destination Address", HFILL }},
{ &hf_cgmp_usa,
{ "Unicast Source Address", "cgmp.usa", FT_ETHER, BASE_NONE, NULL, 0x0,
- "Unicast Source Address" }},
+ "Unicast Source Address", HFILL }},
};
static gint *ett[] = {
&ett_cgmp,