aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h282.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-01-17 12:46:00 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-01-17 12:46:00 +0000
commita255c08b66c95d38d62eebcde91914289cd006d2 (patch)
treeb2565a147de9c219fec10831a2e8fdd833745ea8 /epan/dissectors/packet-h282.c
parentd0ced3ccefd24ef651832f5749e8db6d41ee5ec3 (diff)
Get rid of check_col();
svn path=/trunk/; revision=31546
Diffstat (limited to 'epan/dissectors/packet-h282.c')
-rw-r--r--epan/dissectors/packet-h282.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-h282.c b/epan/dissectors/packet-h282.c
index 201da92fb2..52109cd227 100644
--- a/epan/dissectors/packet-h282.c
+++ b/epan/dissectors/packet-h282.c
@@ -4271,7 +4271,7 @@ dissect_h282_RequestPDU(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_,
#line 27 "h282.cnf"
p = match_strval(msg_type, VALS(h282_RequestPDU_vals));
- if (p && check_col(actx->pinfo->cinfo, COL_INFO))
+ if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "RequestPDU/%s", p);
return offset;
@@ -4314,7 +4314,7 @@ dissect_h282_ResponsePDU(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_
#line 38 "h282.cnf"
p = match_strval(msg_type, VALS(h282_ResponsePDU_vals));
- if (p && check_col(actx->pinfo->cinfo, COL_INFO))
+ if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "ResponsePDU/%s", p);
return offset;
@@ -4349,7 +4349,7 @@ dissect_h282_IndicationPDU(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _
#line 49 "h282.cnf"
p = match_strval(msg_type, VALS(h282_IndicationPDU_vals));
- if (p && check_col(actx->pinfo->cinfo, COL_INFO))
+ if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "IndicationPDU/%s", p);
return offset;