aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-imf.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-11-09 17:33:18 +0000
committerBill Meier <wmeier@newsguy.com>2011-11-09 17:33:18 +0000
commit30cee9900941e991a3c52285dbdd0751b13a0254 (patch)
tree76f458700590551327e10da71a61e8c55cb9826f /epan/dissectors/packet-imf.c
parent4052a406f3b8bd04994290c8c6e7fd0c0ad2e823 (diff)
Fix a number of proto_tree_add_item() encoding args.
svn path=/trunk/; revision=39774
Diffstat (limited to 'epan/dissectors/packet-imf.c')
-rw-r--r--epan/dissectors/packet-imf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-imf.c b/epan/dissectors/packet-imf.c
index 82a3f85f9e..d636d02931 100644
--- a/epan/dissectors/packet-imf.c
+++ b/epan/dissectors/packet-imf.c
@@ -758,7 +758,7 @@ dissect_imf(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
} else {
/* remove 2 bytes to take off the final CRLF to make things a little prettier */
- item = proto_tree_add_item(tree, hf_id, tvb, value_offset, end_offset - value_offset - 2, FALSE);
+ item = proto_tree_add_item(tree, hf_id, tvb, value_offset, end_offset - value_offset - 2, ENC_ASCII|ENC_NA);
}
if(f_info->add_to_col_info && check_col(pinfo->cinfo, COL_INFO)) {