aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-airopeek.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-08-09 07:36:13 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-08-09 07:36:13 +0000
commitb2e9a22ec53becba2c23777ffee4ff375d135698 (patch)
tree794b4645cb56dead798fc6435eb6b0f741fe19c0 /epan/dissectors/packet-airopeek.c
parentd629eac134867d997a496115fd1a04090f149fe7 (diff)
Don't guard col_clear with col_check
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29344 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-airopeek.c')
-rw-r--r--epan/dissectors/packet-airopeek.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-airopeek.c b/epan/dissectors/packet-airopeek.c
index dace13dcda..aa14e2066b 100644
--- a/epan/dissectors/packet-airopeek.c
+++ b/epan/dissectors/packet-airopeek.c
@@ -64,8 +64,7 @@ dissect_airopeek(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_item *ti = NULL;
col_set_str(pinfo->cinfo, COL_PROTOCOL, "AIROPEEK");
- if (check_col(pinfo->cinfo, COL_INFO))
- col_clear(pinfo->cinfo, COL_INFO);
+ col_clear(pinfo->cinfo, COL_INFO);
if (tree) {
ti = proto_tree_add_item(tree, proto_airopeek, tvb, 0, -1, FALSE);