aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-iscsi.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-06-29 09:13:51 -0400
committerMichael Mann <mmann78@netscape.net>2014-06-29 14:52:33 +0000
commite8a8d62dc33099ee2e0d9d405b48e74097f7688d (patch)
tree0d79d9841b29f735cdf0005da3a6c747591586ea /epan/dissectors/packet-iscsi.c
parentfe4b7ee625c046bc09a7d8ae55afb0e16cb17fc3 (diff)
proto_tree_add_subtree[_format]
Change-Id: I7e016f10fcfdc0523bf2fe8c11295c0334f7c332 Reviewed-on: https://code.wireshark.org/review/2694 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-iscsi.c')
-rw-r--r--epan/dissectors/packet-iscsi.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/epan/dissectors/packet-iscsi.c b/epan/dissectors/packet-iscsi.c
index e24ac40677..f062603e07 100644
--- a/epan/dissectors/packet-iscsi.c
+++ b/epan/dissectors/packet-iscsi.c
@@ -703,8 +703,8 @@ handleDataSegmentAsTextKeys(packet_info *pinfo, proto_item *ti, tvbuff_t *tvb, g
int dataOffset = offset;
int textLen = MIN(dataSegmentLen, endOffset - offset);
if(textLen > 0) {
- proto_item *tf = proto_tree_add_text(ti, tvb, offset, textLen, "Key/Value Pairs");
- proto_tree *tt = proto_item_add_subtree(tf, ett_iscsi_KeyValues);
+ proto_tree *tt = proto_tree_add_subtree(ti, tvb, offset, textLen,
+ ett_iscsi_KeyValues, NULL, "Key/Value Pairs");
offset = addTextKeys(pinfo, tt, tvb, offset, textLen);
}
if(offset < endOffset && (offset & 3) != 0) {
@@ -1487,7 +1487,6 @@ dissect_iscsi_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint off
}
offset=end_offset;
} else if(opcode == ISCSI_OPCODE_REJECT) {
- proto_item *tf;
proto_tree *tt;
int next_opcode;
const char *next_opcode_str;
@@ -1507,8 +1506,7 @@ dissect_iscsi_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint off
next_opcode = tvb_get_guint8(tvb, offset) & 0x3f;
next_opcode_str = try_val_to_str(next_opcode, iscsi_opcodes);
- tf = proto_tree_add_text(ti, tvb, offset, -1, "Rejected Header");
- tt = proto_item_add_subtree(tf, ett_iscsi_RejectHeader);
+ tt = proto_tree_add_subtree(ti, tvb, offset, -1, ett_iscsi_RejectHeader, NULL, "Rejected Header");
dissect_iscsi_pdu(tvb, pinfo, tt, offset, next_opcode, next_opcode_str, 0, iscsi_session, conversation);
} else if(opcode == ISCSI_OPCODE_VENDOR_SPECIFIC_I0 ||