aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/t124
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 /asn1/t124
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 'asn1/t124')
-rw-r--r--asn1/t124/t124.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/t124/t124.cnf b/asn1/t124/t124.cnf
index 7062ca7ac8..438fd39aef 100644
--- a/asn1/t124/t124.cnf
+++ b/asn1/t124/t124.cnf
@@ -154,7 +154,7 @@ RegistryAllocateHandleResponse/result AllocateHandleResponseResult
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);