aboutsummaryrefslogtreecommitdiffstats
path: root/packet-wtls.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-wtls.c
parent477cefc2d5af64ed6d46e5bea91eebe5a9618350 (diff)
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-wtls.c')
-rw-r--r--packet-wtls.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-wtls.c b/packet-wtls.c
index 1917d5519f..452e385555 100644
--- a/packet-wtls.c
+++ b/packet-wtls.c
@@ -2,7 +2,7 @@
*
* Routines to dissect WTLS component of WAP traffic.
*
- * $Id: packet-wtls.c,v 1.6 2001/04/18 20:01:17 guy Exp $
+ * $Id: packet-wtls.c,v 1.7 2001/04/19 23:02:43 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -1064,14 +1064,14 @@ proto_register_wtls(void)
{ &hf_wtls_record,
{ "Record",
"wsp.wtls.record",
- FT_UINT8, BASE_NONE, VALS ( wtls_vals_record_type ), 0x0f,
+ FT_UINT8, BASE_DEC, VALS ( wtls_vals_record_type ), 0x0f,
"Record"
}
},
{ &hf_wtls_record_type,
{ "Record Type",
"wsp.wtls.rec_type",
- FT_UINT8, BASE_NONE, VALS ( wtls_vals_record_type ), 0x0f,
+ FT_UINT8, BASE_DEC, VALS ( wtls_vals_record_type ), 0x0f,
"Record Type"
}
},