aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rdt.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-04 22:44:31 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-04 22:44:31 +0000
commit94f36ca4ff177617fcc4e4ca8a171e374f8aeff6 (patch)
tree060bfcfb238455d21752efec8612998f2ab1db6f /epan/dissectors/packet-rdt.c
parent039fc59cb110aa485e910583d1edd5ff81ca2168 (diff)
Use ENC_NA as encoding for proto_tree_add_item() calls which directly reference an hf item (in hf[] with types:
FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39260
Diffstat (limited to 'epan/dissectors/packet-rdt.c')
-rw-r--r--epan/dissectors/packet-rdt.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-rdt.c b/epan/dissectors/packet-rdt.c
index 674ff46131..502eb347cf 100644
--- a/epan/dissectors/packet-rdt.c
+++ b/epan/dissectors/packet-rdt.c
@@ -527,7 +527,7 @@ guint dissect_rdt_data_packet(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tre
stream_id, asm_rule_number, sequence_number, timestamp);
/* The remaining data is unparsed. */
- proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, FALSE);
+ proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, ENC_NA);
offset += tvb_length_remaining(tvb, offset);
if (packet_length < (offset - start_offset) ||
@@ -609,7 +609,7 @@ guint dissect_rdt_asm_action_packet(tvbuff_t *tvb, packet_info *pinfo, proto_tre
stream_id, rel_seqno);
/* The remaining data is unparsed. */
- proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, FALSE);
+ proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, ENC_NA);
if (packet_length < (offset - start_offset) ||
packet_length > tvb_length_remaining(tvb, start_offset))
@@ -737,7 +737,7 @@ guint dissect_rdt_ack_packet(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree
}
/* XXX: The remaining data is unparsed. */
- proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, FALSE);
+ proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, ENC_NA);
col_append_fstr(pinfo->cinfo, COL_INFO, "ACK: lh=%u ", lost_high_flag);
@@ -933,7 +933,7 @@ guint dissect_rdt_report_packet(tvbuff_t *tvb, packet_info *pinfo, proto_tree *t
col_append_str(pinfo->cinfo, COL_INFO, "REPORT: ");
/* The remaining data is unparsed. */
- proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, FALSE);
+ proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, ENC_NA);
if (packet_length < (offset - start_offset) ||
packet_length > tvb_length_remaining(tvb, start_offset))
@@ -1219,7 +1219,7 @@ guint dissect_rdt_unknown_control(tvbuff_t *tvb, packet_info *pinfo, proto_tree
offset += 2;
/* The remaining data is unparsed. */
- proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, FALSE);
+ proto_tree_add_item(tree, hf_rdt_data, tvb, offset, -1, ENC_NA);
offset += tvb_length_remaining(tvb, offset);
col_append_str(pinfo->cinfo, COL_INFO, "UNKNOWN-CTL: ");