aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h282
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2013-04-04 21:01:27 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2013-04-04 21:01:27 +0000
commit5312d37e93f470ca2fa241ad2242f1af8ae34587 (patch)
tree23eeafc8d5671bb153a458c673077209cbc23cd9 /asn1/h282
parent95bad136a0c16fb7b5b6482346334b324605d42f (diff)
Update ASN.1 conformance files with the changes from r48634
svn path=/trunk/; revision=48741
Diffstat (limited to 'asn1/h282')
-rw-r--r--asn1/h282/h282.cnf6
1 files changed, 3 insertions, 3 deletions
diff --git a/asn1/h282/h282.cnf b/asn1/h282/h282.cnf
index 0ca7e55a14..1e818829f9 100644
--- a/asn1/h282/h282.cnf
+++ b/asn1/h282/h282.cnf
@@ -24,7 +24,7 @@ NonCollapsingCapabilities
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
- p = match_strval(msg_type, VALS(h282_RequestPDU_vals));
+ p = try_val_to_str(msg_type, VALS(h282_RequestPDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "RequestPDU/%s", p);
#.END
@@ -35,7 +35,7 @@ NonCollapsingCapabilities
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
- p = match_strval(msg_type, VALS(h282_ResponsePDU_vals));
+ p = try_val_to_str(msg_type, VALS(h282_ResponsePDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "ResponsePDU/%s", p);
#.END
@@ -46,7 +46,7 @@ NonCollapsingCapabilities
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
- p = match_strval(msg_type, VALS(h282_IndicationPDU_vals));
+ p = try_val_to_str(msg_type, VALS(h282_IndicationPDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "IndicationPDU/%s", p);
#.END