aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gvrp.c
diff options
context:
space:
mode:
authorrichardv <richardv@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-10 16:35:54 +0000
committerrichardv <richardv@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-10 16:35:54 +0000
commit712d4a6c6bc1d4f108ce8d375fa040775b379d4c (patch)
treea2131aeae4df9377ebae350aeb41535eb35cf9e8 /epan/dissectors/packet-gvrp.c
parentd5c0c0a05f3c9dfff436ccc77081a49e8a07ede8 (diff)
From Chris Maynard (bug 1852):
These packet-g*.c files all have display filter issues: 1) packet-gryphon.c: PROTOABBREV is "gryphon", but display filter fields are prefixed with only "gryph". 2) packet-gmrp.c: PROTOABBREV is "gmrp", but display filter fields are prefixed with "garp". 3) packet-gssapi.c: PROTOABBREV is "gss-api", but display filter fields are prefixed with "gssapi". 4) packet-gvrp.c: PROTOABBREV is "gvrp", but display filter fields are prefixed with "garp", most of which conflict with packet-gmrp.c's display filter fields. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24058 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-gvrp.c')
-rw-r--r--epan/dissectors/packet-gvrp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-gvrp.c b/epan/dissectors/packet-gvrp.c
index 989f5f3f78..3608c7b5d6 100644
--- a/epan/dissectors/packet-gvrp.c
+++ b/epan/dissectors/packet-gvrp.c
@@ -301,27 +301,27 @@ proto_register_gvrp(void)
{
static hf_register_info hf[] = {
{ &hf_gvrp_proto_id,
- { "Protocol ID", "garp.protocol_id",
+ { "Protocol ID", "gvrp.protocol_id",
FT_UINT16, BASE_HEX, NULL, 0x0,
"", HFILL }
},
{ &hf_gvrp_attribute_type,
- { "Type", "garp.attribute_type",
+ { "Type", "gvrp.attribute_type",
FT_UINT8, BASE_HEX, VALS(attribute_type_vals), 0x0,
"", HFILL }
},
{ &hf_gvrp_attribute_length,
- { "Length", "garp.attribute_length",
+ { "Length", "gvrp.attribute_length",
FT_UINT8, BASE_DEC, NULL, 0x0,
"", HFILL }
},
{ &hf_gvrp_attribute_event,
- { "Event", "garp.attribute_event",
+ { "Event", "gvrp.attribute_event",
FT_UINT8, BASE_DEC, VALS(event_vals), 0x0,
"", HFILL }
},
{ &hf_gvrp_attribute_value,
- { "Value", "garp.attribute_value",
+ { "Value", "gvrp.attribute_value",
FT_UINT16, BASE_DEC, NULL, 0x0,
"", HFILL }
}