diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-04-19 23:02:44 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-04-19 23:02:44 +0000 |
commit | 0fa45bb541cd927ff1fd8b5cb3f8f4535d0e1b50 (patch) | |
tree | 39e71d3f736bb959b205fc75f44312f0b79afd95 /packet-isl.c | |
parent | 477cefc2d5af64ed6d46e5bea91eebe5a9618350 (diff) | |
download | wireshark-0fa45bb541cd927ff1fd8b5cb3f8f4535d0e1b50.tar.gz wireshark-0fa45bb541cd927ff1fd8b5cb3f8f4535d0e1b50.tar.bz2 wireshark-0fa45bb541cd927ff1fd8b5cb3f8f4535d0e1b50.zip |
FT_UINTn and FT_INTn fields must always have a base selected for them;
otherwise, the filtering GUI gets very upset when you try to construct a
filter expression to test the value of that field. Make them BASE_DEC.
svn path=/trunk/; revision=3334
Diffstat (limited to 'packet-isl.c')
-rw-r--r-- | packet-isl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-isl.c b/packet-isl.c index e43e6a3e00..b704156031 100644 --- a/packet-isl.c +++ b/packet-isl.c @@ -1,7 +1,7 @@ /* packet-isl.c * Routines for Cisco ISL Ethernet header disassembly * - * $Id: packet-isl.c,v 1.23 2001/01/21 22:10:22 guy Exp $ + * $Id: packet-isl.c,v 1.24 2001/04/19 23:02:44 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -284,10 +284,10 @@ proto_register_isl(void) { "Destination", "isl.dst", FT_ETHER, BASE_NONE, NULL, 0x0, "Destination Address" }}, { &hf_isl_type, - { "Type", "isl.type", FT_UINT8, BASE_NONE, + { "Type", "isl.type", FT_UINT8, BASE_DEC, VALS(type_vals), 0xF0, "Type" }}, { &hf_isl_user_eth, - { "User", "isl.user_eth", FT_UINT8, BASE_NONE, + { "User", "isl.user_eth", FT_UINT8, BASE_DEC, VALS(ether_user_vals), 0x0F, "Priority (for Ethernet)" }}, { &hf_isl_user, { "User", "isl.user", FT_UINT8, BASE_HEX, NULL, 0x0F, |