summaryrefslogtreecommitdiff
path: root/plugins/docsis/packet-regrsp.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-04-05 20:04:52 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-04-05 20:04:52 +0000
commit7cfa27b04bc8564d8f2c747e7f78fe55bfa67de3 (patch)
tree486aa000656218e8390a9a31345c7d45e33cc062 /plugins/docsis/packet-regrsp.c
parenta5b180a3a84b778bf361b86bb71d987885a02cf4 (diff)
downloadwireshark-7cfa27b04bc8564d8f2c747e7f78fe55bfa67de3.tar.gz
Get rid of a bunch of check_col().
svn path=/trunk/; revision=32388
Diffstat (limited to 'plugins/docsis/packet-regrsp.c')
-rw-r--r--plugins/docsis/packet-regrsp.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/plugins/docsis/packet-regrsp.c b/plugins/docsis/packet-regrsp.c
index b98636293c..a0c87cdc6b 100644
--- a/plugins/docsis/packet-regrsp.c
+++ b/plugins/docsis/packet-regrsp.c
@@ -57,12 +57,9 @@ dissect_regrsp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
sid = tvb_get_ntohs (tvb, 0);
response = tvb_get_guint8 (tvb, 2);
- if (check_col (pinfo->cinfo, COL_INFO))
- {
- col_add_fstr (pinfo->cinfo, COL_INFO,
- "Registration Response SID = %u (%s)", sid,
- val_to_str (response, docsis_conf_code, "%s"));
- }
+ col_add_fstr (pinfo->cinfo, COL_INFO,
+ "Registration Response SID = %u (%s)", sid,
+ val_to_str (response, docsis_conf_code, "%s"));
if (tree)
{