aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h283.c
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 /epan/dissectors/packet-h283.c
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 'epan/dissectors/packet-h283.c')
-rw-r--r--epan/dissectors/packet-h283.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-h283.c b/epan/dissectors/packet-h283.c
index 2f847a3809..3959812f22 100644
--- a/epan/dissectors/packet-h283.c
+++ b/epan/dissectors/packet-h283.c
@@ -283,7 +283,7 @@ dissect_h283_LCTRequest(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_,
#line 61 "h283.cnf"
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;
}
@@ -334,7 +334,7 @@ dissect_h283_LCTResponse(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_
#line 74 "h283.cnf"
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;
}
@@ -365,7 +365,7 @@ dissect_h283_LCTIndication(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _
#line 87 "h283.cnf"
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;
}
@@ -429,7 +429,7 @@ dissect_h283_LCTMessage(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_,
#line 48 "h283.cnf"
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;
}
@@ -481,7 +481,7 @@ dissect_h283_T_dataType(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_,
#line 35 "h283.cnf"
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;
}
@@ -529,7 +529,7 @@ dissect_h283_T_pduType(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_,
#line 22 "h283.cnf"
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;
}