aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-snaeth.c
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-09 07:01:26 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-09 07:01:26 +0000
commit4b6090e5766e315090c2f3d15cb3368d98168be9 (patch)
treed037fcc527744affba9a5d599723b9be8f4f6d2c /epan/dissectors/packet-snaeth.c
parent24ca3c44c9e72bb95ed5f3bb9608600555de368e (diff)
Don't guard col_set_str (COL_INFO) with col_check
svn path=/trunk/; revision=29342
Diffstat (limited to 'epan/dissectors/packet-snaeth.c')
-rw-r--r--epan/dissectors/packet-snaeth.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-snaeth.c b/epan/dissectors/packet-snaeth.c
index f4c82db5bc..bd9b3b278c 100644
--- a/epan/dissectors/packet-snaeth.c
+++ b/epan/dissectors/packet-snaeth.c
@@ -52,8 +52,7 @@ dissect_snaeth(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
tvbuff_t *next_tvb;
col_set_str(pinfo->cinfo, COL_PROTOCOL, "SNAETH");
- if (check_col(pinfo->cinfo, COL_INFO))
- col_set_str(pinfo->cinfo, COL_INFO, "SNA over Ethernet");
+ col_set_str(pinfo->cinfo, COL_INFO, "SNA over Ethernet");
/* length */
len = tvb_get_ntohs(tvb, 0);