aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-11-11 12:56:34 -0500
committerBill Meier <wmeier@newsguy.com>2014-11-11 18:00:45 +0000
commitdfaaba81c95a0e74798973e5004352476296298f (patch)
tree320c3bc8bd52ed713a2f9852eede205e55126d8e
parentbd9ff6bb8a13df618beb8ca132bbc837fe648208 (diff)
hiqnet: Use correct filter names; Fix specification of hf_dhcp
"foo.flags..." --> "hiqnet.flags..."; Use BASE_NONE for hf_dchp. Change-Id: Ic3ca4754a1daeefc831dbfcd6a280fe19f8efbf3 Reviewed-on: https://code.wireshark.org/review/5240 Reviewed-by: Bill Meier <wmeier@newsguy.com>
-rw-r--r--epan/dissectors/packet-hiqnet.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-hiqnet.c b/epan/dissectors/packet-hiqnet.c
index 3e69d9aa2b..d1bc8644c4 100644
--- a/epan/dissectors/packet-hiqnet.c
+++ b/epan/dissectors/packet-hiqnet.c
@@ -1158,43 +1158,43 @@ proto_register_hiqnet(void)
NULL, HFILL }
},
{ &hf_hiqnet_reqack_flag,
- { "Request acknowledgement flag", "foo.flags.reqack",
+ { "Request acknowledgement flag", "hiqnet.flags.reqack",
FT_BOOLEAN, 16,
NULL, HIQNET_REQACK_FLAG,
NULL, HFILL }
},
{ &hf_hiqnet_ack_flag,
- { "Acknowledgement flag", "foo.flags.ack",
+ { "Acknowledgement flag", "hiqnet.flags.ack",
FT_BOOLEAN, 16,
NULL, HIQNET_ACK_FLAG,
NULL, HFILL }
},
{ &hf_hiqnet_info_flag,
- { "Information flag", "foo.flags.info",
+ { "Information flag", "hiqnet.flags.info",
FT_BOOLEAN, 16,
NULL, HIQNET_INFO_FLAG,
NULL, HFILL }
},
{ &hf_hiqnet_error_flag,
- { "Error flag", "foo.flags.error",
+ { "Error flag", "hiqnet.flags.error",
FT_BOOLEAN, 16,
NULL, HIQNET_ERROR_FLAG,
NULL, HFILL }
},
{ &hf_hiqnet_guaranteed_flag,
- { "Guaranteed flag", "foo.flags.guar",
+ { "Guaranteed flag", "hiqnet.flags.guar",
FT_BOOLEAN, 16,
NULL, HIQNET_GUARANTEED_FLAG,
NULL, HFILL }
},
{ &hf_hiqnet_multipart_flag,
- { "Multipart flag", "foo.flags.multi",
+ { "Multipart flag", "hiqnet.flags.multi",
FT_BOOLEAN, 16,
NULL, HIQNET_MULTIPART_FLAG,
NULL, HFILL }
},
{ &hf_hiqnet_session_flag,
- { "Session flag", "foo.flags.session",
+ { "Session flag", "hiqnet.flags.session",
FT_BOOLEAN, 16,
NULL, HIQNET_SESSION_FLAG,
NULL, HFILL }
@@ -1285,7 +1285,7 @@ proto_register_hiqnet(void)
},
{ &hf_hiqnet_dhcp,
{ "DHCP", "hiqnet.dhcp",
- FT_BOOLEAN, 1,
+ FT_BOOLEAN, BASE_NONE,
NULL, 0x0,
NULL, HFILL }
},