aboutsummaryrefslogtreecommitdiffstats
path: root/packet-iscsi.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-10-20 18:30:50 +0000
committerGuy Harris <guy@alum.mit.edu>2001-10-20 18:30:50 +0000
commit24c930c708fce6e3ed7aa15ba2139302a5966019 (patch)
tree801c5847dcf58b1b78203046f0b07465b533fe8d /packet-iscsi.c
parent959334aecdce4b0487298b25318d5e88f858b765 (diff)
FT_UINTn values must always have a base, even if they're bitfields - the
width of the item containing the bitfield is "n", so you don't have to specify it explicitly, as you have to do with FT_BOOLEAN bitfields. svn path=/trunk/; revision=4047
Diffstat (limited to 'packet-iscsi.c')
-rw-r--r--packet-iscsi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-iscsi.c b/packet-iscsi.c
index 3ed1cbd318..1fe316a873 100644
--- a/packet-iscsi.c
+++ b/packet-iscsi.c
@@ -4,7 +4,7 @@
*
* Conforms to the protocol described in: draft-ietf-ips-iscsi-08.txt
*
- * $Id: packet-iscsi.c,v 1.11 2001/10/19 20:53:14 guy Exp $
+ * $Id: packet-iscsi.c,v 1.12 2001/10/20 18:30:50 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1557,7 +1557,7 @@ proto_register_iscsi(void)
},
{ &hf_iscsi_snack_type,
{ "S", "iscsi.snack.type",
- FT_UINT8, 8, VALS(iscsi_snack_types), 0x0f,
+ FT_UINT8, BASE_DEC, VALS(iscsi_snack_types), 0x0f,
"Type of SNACK requested", HFILL }
},
{ &hf_iscsi_BegRun,