aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h283/h283.cnf
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-01-17 12:46:00 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-01-17 12:46:00 +0000
commit46a73ca55add522a5870b74d64a75f9a1b3237ea (patch)
treeb2565a147de9c219fec10831a2e8fdd833745ea8 /asn1/h283/h283.cnf
parent60b779755a41df944093cc113668930fd7947b11 (diff)
Get rid of check_col();
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31546 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'asn1/h283/h283.cnf')
-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 eed494a537..a08b739433 100644
--- a/asn1/h283/h283.cnf
+++ b/asn1/h283/h283.cnf
@@ -20,7 +20,7 @@ LCTPDU
const gchar *p = NULL;
#.FN_FTR
p = match_strval(pdu_type, VALS(h283_T_pduType_vals));
- if (!info_is_set && p && check_col(actx->pinfo->cinfo, COL_INFO)) {
+ if (!info_is_set && p ) {
col_set_str(actx->pinfo->cinfo, COL_INFO, p);
info_is_set = TRUE;
}
@@ -33,7 +33,7 @@ LCTPDU
const gchar *p = NULL;
#.FN_FTR
p = match_strval(data_type, VALS(h283_T_dataType_vals));
- if (!info_is_set && p && check_col(actx->pinfo->cinfo, COL_INFO)) {
+ if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "RDCData/%s", p);
info_is_set = TRUE;
}
@@ -46,7 +46,7 @@ LCTPDU
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h283_LCTMessage_vals));
- if (!info_is_set && p && check_col(actx->pinfo->cinfo, COL_INFO)) {
+ if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTMessage/%s", p);
info_is_set = TRUE;
}
@@ -59,7 +59,7 @@ LCTPDU
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h283_LCTRequest_vals));
- if (!info_is_set && p && check_col(actx->pinfo->cinfo, COL_INFO)) {
+ if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTRequest/%s", p);
info_is_set = TRUE;
}
@@ -72,7 +72,7 @@ LCTPDU
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h283_LCTResponse_vals));
- if (!info_is_set && p && check_col(actx->pinfo->cinfo, COL_INFO)) {
+ if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTResponse/%s", p);
info_is_set = TRUE;
}
@@ -85,7 +85,7 @@ LCTPDU
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h283_LCTIndication_vals));
- if (!info_is_set && p && check_col(actx->pinfo->cinfo, COL_INFO)) {
+ if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTIndication/%s", p);
info_is_set = TRUE;
}