aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-t124.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-01-22 07:33:57 +0000
committerGuy Harris <guy@alum.mit.edu>2014-01-22 07:33:57 +0000
commit90e6423c3827e0118adc0ad3d6d6a43950435e74 (patch)
tree2c5decf6a7fcdba21f57e10d4e2558763934454d /epan/dissectors/packet-t124.c
parentee88d38b4e84149974e05ee57f4089582d0e124b (diff)
I don't see any specification of how a H221NonStandardIdentifier is
encoded, but let's say it's pure ASCII for now. svn path=/trunk/; revision=54899
Diffstat (limited to 'epan/dissectors/packet-t124.c')
-rw-r--r--epan/dissectors/packet-t124.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-t124.c b/epan/dissectors/packet-t124.c
index d75e59c273..e6c83516cd 100644
--- a/epan/dissectors/packet-t124.c
+++ b/epan/dissectors/packet-t124.c
@@ -584,7 +584,7 @@ dissect_t124_T_value(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, pr
if(next_tvb) {
- ns = tvb_get_string(NULL, t124NSIdentifier, 0, tvb_length(t124NSIdentifier));
+ ns = tvb_get_string_enc(NULL, t124NSIdentifier, 0, tvb_length(t124NSIdentifier), ENC_ASCII|ENC_NA);
if(ns != NULL) {
dissector_try_string(t124_ns_dissector_table, ns, next_tvb, actx->pinfo, top_tree, NULL);
g_free(ns);