summaryrefslogtreecommitdiff
path: root/asn1/h283
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/h283
parent95bad136a0c16fb7b5b6482346334b324605d42f (diff)
downloadwireshark-5312d37e93f470ca2fa241ad2242f1af8ae34587.tar.gz
Update ASN.1 conformance files with the changes from r48634
svn path=/trunk/; revision=48741
Diffstat (limited to 'asn1/h283')
-rw-r--r--asn1/h283/h283.cnf12
1 files changed, 6 insertions, 6 deletions
diff --git a/asn1/h283/h283.cnf b/asn1/h283/h283.cnf
index a08b739433..6c9f1d0f9a 100644
--- a/asn1/h283/h283.cnf
+++ b/asn1/h283/h283.cnf
@@ -19,7 +19,7 @@ LCTPDU
gint32 pdu_type = -1;
const gchar *p = NULL;
#.FN_FTR
- p = match_strval(pdu_type, VALS(h283_T_pduType_vals));
+ p = try_val_to_str(pdu_type, VALS(h283_T_pduType_vals));
if (!info_is_set && p ) {
col_set_str(actx->pinfo->cinfo, COL_INFO, p);
info_is_set = TRUE;
@@ -32,7 +32,7 @@ LCTPDU
gint32 data_type = -1;
const gchar *p = NULL;
#.FN_FTR
- p = match_strval(data_type, VALS(h283_T_dataType_vals));
+ p = try_val_to_str(data_type, VALS(h283_T_dataType_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "RDCData/%s", p);
info_is_set = TRUE;
@@ -45,7 +45,7 @@ LCTPDU
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
- p = match_strval(msg_type, VALS(h283_LCTMessage_vals));
+ p = try_val_to_str(msg_type, VALS(h283_LCTMessage_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTMessage/%s", p);
info_is_set = TRUE;
@@ -58,7 +58,7 @@ LCTPDU
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
- p = match_strval(msg_type, VALS(h283_LCTRequest_vals));
+ p = try_val_to_str(msg_type, VALS(h283_LCTRequest_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTRequest/%s", p);
info_is_set = TRUE;
@@ -71,7 +71,7 @@ LCTPDU
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
- p = match_strval(msg_type, VALS(h283_LCTResponse_vals));
+ p = try_val_to_str(msg_type, VALS(h283_LCTResponse_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTResponse/%s", p);
info_is_set = TRUE;
@@ -84,7 +84,7 @@ LCTPDU
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
- p = match_strval(msg_type, VALS(h283_LCTIndication_vals));
+ p = try_val_to_str(msg_type, VALS(h283_LCTIndication_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTIndication/%s", p);
info_is_set = TRUE;