summaryrefslogtreecommitdiff
path: root/plugins/irda/packet-irda.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-01-13 20:32:01 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-01-13 20:32:01 +0000
commit440c3f9261af41a397823a80121cfa0122df1c88 (patch)
tree64b368c46b53e0e8f52e80f61ed17e13d64596a5 /plugins/irda/packet-irda.c
parent6343ffb68e3e7ea3b335ad5e443e23f324a99d35 (diff)
downloadwireshark-440c3f9261af41a397823a80121cfa0122df1c88.tar.gz
From Didier Gautheron:
check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31519
Diffstat (limited to 'plugins/irda/packet-irda.c')
-rw-r--r--plugins/irda/packet-irda.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/irda/packet-irda.c b/plugins/irda/packet-irda.c
index eba27bcf5e..0d9647cb1e 100644
--- a/plugins/irda/packet-irda.c
+++ b/plugins/irda/packet-irda.c
@@ -1746,10 +1746,8 @@ static void dissect_irlap(tvbuff_t* tvb, packet_info* pinfo, proto_tree* root)
/* initially set address columns to connection address */
g_snprintf(addr, sizeof(addr)-1, "0x%02X", a >> 1);
- if (check_col(pinfo->cinfo, COL_DEF_SRC))
- col_add_str(pinfo->cinfo, COL_DEF_SRC, addr);
- if (check_col(pinfo->cinfo, COL_DEF_DST))
- col_add_str(pinfo->cinfo, COL_DEF_DST, addr);
+ col_add_str(pinfo->cinfo, COL_DEF_SRC, addr);
+ col_add_str(pinfo->cinfo, COL_DEF_DST, addr);
if (root)
{