summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ansi_map.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-01-21 20:13:17 +0000
committerGuy Harris <guy@alum.mit.edu>2014-01-21 20:13:17 +0000
commit87f4b376f1cc4e0e89f880c4891661e5f20ee34e (patch)
treeee519183cd6092e0f1fb690710d04fdf7da7b260 /epan/dissectors/packet-ansi_map.c
parent4eb619b677b661df94ef2eb712d7d8117f1c2e0f (diff)
downloadwireshark-87f4b376f1cc4e0e89f880c4891661e5f20ee34e.tar.gz
Fix one half-changed tvb_get_string() call.
svn path=/trunk/; revision=54879
Diffstat (limited to 'epan/dissectors/packet-ansi_map.c')
-rw-r--r--epan/dissectors/packet-ansi_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ansi_map.c b/epan/dissectors/packet-ansi_map.c
index 90fb29e596..925b041d05 100644
--- a/epan/dissectors/packet-ansi_map.c
+++ b/epan/dissectors/packet-ansi_map.c
@@ -1523,7 +1523,7 @@ dissect_ansi_map_digits_type(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *
case 2:
/* IA5 Coding */
proto_tree_add_item(subtree, hf_ansi_map_ia5_digits, tvb, offset, -1, ENC_ASCII|ENC_NA);
- proto_item_append_text(actx->created_item, " - %s", tvb_get_string(wmem_packet_scope(),tvb,offset,tvb_length_remaining(tvb,offset),ENC_ASCII|ENC_NA));
+ proto_item_append_text(actx->created_item, " - %s", tvb_get_string_enc(wmem_packet_scope(),tvb,offset,tvb_length_remaining(tvb,offset),ENC_ASCII|ENC_NA));
break;
case 3:
/* Octet string */