summaryrefslogtreecommitdiff
path: root/packet-sna.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-04-19 23:02:44 +0000
committerGuy Harris <guy@alum.mit.edu>2001-04-19 23:02:44 +0000
commit0fa45bb541cd927ff1fd8b5cb3f8f4535d0e1b50 (patch)
tree39e71d3f736bb959b205fc75f44312f0b79afd95 /packet-sna.c
parent477cefc2d5af64ed6d46e5bea91eebe5a9618350 (diff)
downloadwireshark-0fa45bb541cd927ff1fd8b5cb3f8f4535d0e1b50.tar.gz
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-sna.c')
-rw-r--r--packet-sna.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-sna.c b/packet-sna.c
index 8dcf6dfdea..f51b5b1934 100644
--- a/packet-sna.c
+++ b/packet-sna.c
@@ -2,7 +2,7 @@
* Routines for SNA
* Gilbert Ramirez <gram@xiexie.org>
*
- * $Id: packet-sna.c,v 1.27 2001/03/22 16:24:14 gram Exp $
+ * $Id: packet-sna.c,v 1.28 2001/04/19 23:02:44 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -885,7 +885,7 @@ proto_register_sna(void)
"Format Identification" }},
{ &hf_sna_th_mpf,
- { "Mapping Field", "sna.th.mpf", FT_UINT8, BASE_NONE, VALS(sna_th_mpf_vals), 0x0c,
+ { "Mapping Field", "sna.th.mpf", FT_UINT8, BASE_DEC, VALS(sna_th_mpf_vals), 0x0c,
"The Mapping Field specifies whether the information field"
" associated with the TH is a complete or partial BIU." }},
@@ -908,7 +908,7 @@ proto_register_sna(void)
"" }},
{ &hf_sna_th_snf,
- { "Sequence Number Field", "sna.th.snf", FT_UINT16, BASE_NONE, NULL, 0x0,
+ { "Sequence Number Field", "sna.th.snf", FT_UINT16, BASE_DEC, NULL, 0x0,
"The Sequence Number Field contains a numerical identifier for"
" the associated BIU."}},