aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nfs.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2012-07-05 23:31:17 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2012-07-05 23:31:17 +0000
commit217514e5658a60a85342881e3f313c1ce69bc56d (patch)
treebb50d25ad3d31bb99b8f999a77542bf4beac6cee /epan/dissectors/packet-nfs.c
parentc7dbc44bf34dabca8c8f3afd75d78e587cae2c73 (diff)
Remove a couple set-but-unused variables. I *think* the new tree isn't
particularly useful... svn path=/trunk/; revision=43577
Diffstat (limited to 'epan/dissectors/packet-nfs.c')
-rw-r--r--epan/dissectors/packet-nfs.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/epan/dissectors/packet-nfs.c b/epan/dissectors/packet-nfs.c
index 7eeade3fb1..bfdffaa7f6 100644
--- a/epan/dissectors/packet-nfs.c
+++ b/epan/dissectors/packet-nfs.c
@@ -8331,8 +8331,6 @@ dissect_nfs_state_protect_bitmap4(tvbuff_t *tvb, int offset,
guint32 bitmap_len;
proto_item *fitem = NULL;
proto_tree *newftree = NULL;
- proto_item *op_fitem = NULL;
- proto_tree *op_newftree = NULL;
guint32 *bitmap=NULL;
guint32 op;
guint32 i;
@@ -8347,7 +8345,7 @@ dissect_nfs_state_protect_bitmap4(tvbuff_t *tvb, int offset,
}
tvb_ensure_bytes_exist(tvb, offset, 4 + bitmap_len * 4);
fitem = proto_tree_add_text(tree, tvb, offset, 4 + bitmap_len * 4,
- "%s", "operation mask");
+ "%s", "operation mask");
offset += 4;
newftree = proto_item_add_subtree(fitem, ett_nfs_bitmap4);
@@ -8361,9 +8359,8 @@ dissect_nfs_state_protect_bitmap4(tvbuff_t *tvb, int offset,
for (j = 0; j < 32; j++) {
op = 32 * i + j;
if (bitmap[i] & sl) {
- op_fitem = proto_tree_add_uint(newftree,
- hf_nfs_op_mask, tvb, offset, 4, op);
- op_newftree = proto_item_add_subtree(op_fitem, ett_nfs_bitmap4);
+ proto_tree_add_uint(newftree, hf_nfs_op_mask,
+ tvb, offset, 4, op);
}
sl <<= 1;
}