aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-iscsi.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-10 23:45:33 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-10 23:45:33 +0000
commitaf3ae8ceead9642723b06b31690c7c0a73ef11f6 (patch)
treee3b545aeea7ce5378743f405e5fd3d2920ef3015 /epan/dissectors/packet-iscsi.c
parentee395460d01d173527f56b233bd91201073c9f90 (diff)
Fix "unused variable" compile error.
svn path=/trunk/; revision=39352
Diffstat (limited to 'epan/dissectors/packet-iscsi.c')
-rw-r--r--epan/dissectors/packet-iscsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-iscsi.c b/epan/dissectors/packet-iscsi.c
index 547e6175a0..f82d524f7c 100644
--- a/epan/dissectors/packet-iscsi.c
+++ b/epan/dissectors/packet-iscsi.c
@@ -1387,8 +1387,8 @@ dissect_iscsi_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint off
} else if(opcode == ISCSI_OPCODE_SNACK_REQUEST) {
/* SNACK Request */
{
- gint b = tvb_get_guint8(tvb, offset + 1);
#if 0
+ gint b = tvb_get_guint8(tvb, offset + 1);
proto_item *tf = proto_tree_add_uint(ti, hf_iscsi_Flags, tvb, offset + 1, 1, b);
proto_tree *tt = proto_item_add_subtree(tf, ett_iscsi_Flags);
#endif