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>
This commit is contained in:
Bill Meier 2014-11-11 12:56:34 -05:00
parent bd9ff6bb8a
commit dfaaba81c9
1 changed files with 8 additions and 8 deletions

View File

@ -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 }
},