ISO 7816: fix filters for Fi and Di fields

They use proto_tree_add_uint_format() function to build an interpreted value, so they should not apply the byte bitmask

Change-Id: I29f70f567d41a8a44a34f3f0bc477fbc04b11b29
Reviewed-on: https://code.wireshark.org/review/14553
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
This commit is contained in:
Pascal Quantin 2016-03-22 11:18:19 +01:00 committed by Martin Kaiser
parent c362dc7a52
commit d20c69c3ef
1 changed files with 2 additions and 2 deletions

View File

@ -765,11 +765,11 @@ proto_register_iso7816(void)
},
{ &hf_iso7816_atr_ta1_fi,
{ "Fi", "iso7816.atr.ta1.fi",
FT_UINT16, BASE_DEC, NULL, 0xF0, NULL, HFILL }
FT_UINT16, BASE_DEC, NULL, 0, NULL, HFILL }
},
{ &hf_iso7816_atr_ta1_di,
{ "Di", "iso7816.atr.ta1.di",
FT_UINT8, BASE_HEX, NULL, 0x0F, NULL, HFILL }
FT_UINT8, BASE_DEC, NULL, 0, NULL, HFILL }
},
{ &hf_iso7816_atr_tb,
{ "Interface character TB(i)", "iso7816.atr.tb",