aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pop.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-pop.c')
-rw-r--r--epan/dissectors/packet-pop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-pop.c b/epan/dissectors/packet-pop.c
index 1e5c5e7cf5..22897e1efb 100644
--- a/epan/dissectors/packet-pop.c
+++ b/epan/dissectors/packet-pop.c
@@ -275,7 +275,7 @@ dissect_pop(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
(is_request) ?
hf_pop_request_command :
hf_pop_response_indicator,
- tvb, offset, tokenlen, FALSE);
+ tvb, offset, tokenlen, ENC_ASCII|ENC_NA);
if (data_val) {
if (is_request) {
@@ -313,7 +313,7 @@ dissect_pop(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
(is_request) ?
hf_pop_request_parameter :
hf_pop_response_description,
- tvb, offset, linelen, FALSE);
+ tvb, offset, linelen, ENC_ASCII|ENC_NA);
}
offset = next_offset;