aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-g723.c
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-09 06:26:46 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-09 06:26:46 +0000
commite971354a546be5efc284c72e49689a2e337bc198 (patch)
tree13a89a4bf6146b1bbe2afde85c3544eee651ca78 /epan/dissectors/packet-g723.c
parentfc067ab9104d12f3683c8f112250b8523260b77f (diff)
Don't guard col_set_str (COL_PROTOCOL) with col_check
svn path=/trunk/; revision=29340
Diffstat (limited to 'epan/dissectors/packet-g723.c')
-rw-r--r--epan/dissectors/packet-g723.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-g723.c b/epan/dissectors/packet-g723.c
index a3c3992a4c..6f2a4a445f 100644
--- a/epan/dissectors/packet-g723.c
+++ b/epan/dissectors/packet-g723.c
@@ -79,8 +79,7 @@ dissect_g723(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree *g723_tree;
/* Make entries in Protocol column and Info column on summary display */
- if (check_col(pinfo->cinfo, COL_PROTOCOL))
- col_set_str(pinfo->cinfo, COL_PROTOCOL, "G.723.1");
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "G.723.1");
if (tree) {
ti = proto_tree_add_item(tree, proto_g723, tvb, 0, -1, FALSE);