aboutsummaryrefslogtreecommitdiffstats
path: root/packet-gvrp.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-gvrp.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-gvrp.c')
-rw-r--r--packet-gvrp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/packet-gvrp.c b/packet-gvrp.c
index 1fb574353a..470f557795 100644
--- a/packet-gvrp.c
+++ b/packet-gvrp.c
@@ -2,7 +2,7 @@
* Routines for GVRP (GARP VLAN Registration Protocol) dissection
* Copyright 2000, Kevin Shi <techishi@ms22.hinet.net>
*
- * $Id: packet-gvrp.c,v 1.5 2001/05/27 07:07:34 guy Exp $
+ * $Id: packet-gvrp.c,v 1.6 2001/06/18 02:17:46 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -303,27 +303,27 @@ proto_register_gvrp(void)
{ &hf_gvrp_proto_id,
{ "Protocol ID", "garp.protocol_id",
FT_UINT16, BASE_HEX, NULL, 0x0,
- "" }
+ "", HFILL }
},
{ &hf_gvrp_attribute_type,
{ "Type", "garp.attribute_type",
FT_UINT8, BASE_HEX, VALS(attribute_type_vals), 0x0,
- "" }
+ "", HFILL }
},
{ &hf_gvrp_attribute_length,
{ "Length", "garp.attribute_length",
FT_UINT8, BASE_DEC, NULL, 0x0,
- "" }
+ "", HFILL }
},
{ &hf_gvrp_attribute_event,
{ "Event", "garp.attribute_event",
FT_UINT8, BASE_DEC, VALS(event_vals), 0x0,
- "" }
+ "", HFILL }
},
{ &hf_gvrp_attribute_value,
{ "Value", "garp.attribute_value",
FT_UINT16, BASE_DEC, NULL, 0x0,
- "" }
+ "", HFILL }
}
};