aboutsummaryrefslogtreecommitdiffstats
path: root/packet-socks.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-socks.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-socks.c')
-rw-r--r--packet-socks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-socks.c b/packet-socks.c
index 2bd573df4e..f980c5988e 100644
--- a/packet-socks.c
+++ b/packet-socks.c
@@ -2,7 +2,7 @@
* Routines for socks versions 4 &5 packet dissection
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet-socks.c,v 1.18 2001/01/10 10:59:11 guy Exp $
+ * $Id: packet-socks.c,v 1.19 2001/04/19 23:02:44 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -1113,7 +1113,7 @@ proto_register_socks( void){
{ &hf_socks_ver,
- { "Version", "socks.ver", FT_UINT8, BASE_NONE, NULL,
+ { "Version", "socks.ver", FT_UINT8, BASE_DEC, NULL,
0x0, ""
}
},