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-mpls.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-mpls.c')
-rw-r--r-- | packet-mpls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-mpls.c b/packet-mpls.c index 58aef1e002..e8b677dd44 100644 --- a/packet-mpls.c +++ b/packet-mpls.c @@ -3,7 +3,7 @@ * * (c) Copyright Ashok Narayanan <ashokn@cisco.com> * - * $Id: packet-mpls.c,v 1.18 2001/04/17 06:43:19 guy Exp $ + * $Id: packet-mpls.c,v 1.19 2001/04/19 23:02:44 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -89,7 +89,7 @@ static int mpls_filter[MPLSF_MAX]; static hf_register_info mplsf_info[] = { /* {&mpls_filter[MPLSF_PACKET], - {"MPLS Label Switched Packet", "mpls", FT_UINT8, BASE_NONE, NULL, 0x0, + {"MPLS Label Switched Packet", "mpls", FT_UINT8, BASE_DEC, NULL, 0x0, "" }},*/ {&mpls_filter[MPLSF_LABEL], |