aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dec-dnart.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-dec-dnart.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-dec-dnart.c')
-rw-r--r--epan/dissectors/packet-dec-dnart.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dec-dnart.c b/epan/dissectors/packet-dec-dnart.c
index a6d3feb61b..ca9782af15 100644
--- a/epan/dissectors/packet-dec-dnart.c
+++ b/epan/dissectors/packet-dec-dnart.c
@@ -817,7 +817,7 @@ do_hello_msg(
my_offset++;
ti_locala = proto_tree_add_item(tree, hf_dec_rt_elist, tvb,
- my_offset, image_len, TRUE);
+ my_offset, image_len, ENC_NA);
list_tree = proto_item_add_subtree(ti_locala, ett_dec_rt_list);
while (image_len > 0) {
@@ -1150,7 +1150,7 @@ handle_connect_contents(
guint16 grp_code, usr_code;
ti = proto_tree_add_item(tree, hf_dec_conn_contents,
- tvb, my_offset, -1, TRUE);
+ tvb, my_offset, -1, ENC_NA);
contents_tree = proto_item_add_subtree(ti, ett_dec_sess_contents);
/* The destination end user */
dst_format = tvb_get_guint8(tvb, my_offset);