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-zebra.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-zebra.c')
-rw-r--r-- | packet-zebra.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-zebra.c b/packet-zebra.c index 33b194ea85..ed67210d02 100644 --- a/packet-zebra.c +++ b/packet-zebra.c @@ -3,7 +3,7 @@ * * Jochen Friedrich <jochen@scram.de> * - * $Id: packet-zebra.c,v 1.10 2001/03/13 21:34:24 gram Exp $ + * $Id: packet-zebra.c,v 1.11 2001/04/19 23:02:43 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -611,7 +611,7 @@ proto_register_zebra(void) "Destination IPv6 field" }}, { &hf_zebra_nexthopnum, { "Nexthop Number", "zebra.nexthopnum", - FT_UINT8, BASE_NONE, NULL, 0x0, + FT_UINT8, BASE_DEC, NULL, 0x0, "Number of nexthops in route" }}, { &hf_zebra_nexthop4, { "Nexthop", "zebra.nexthop4", |