aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-stun.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-22 21:18:11 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-22 21:18:11 +0000
commit7c3b3eb30846a62a7efa0002d851198ee09ef367 (patch)
tree1e8a02d47173f15306aadbd893999a857be9fb1f /epan/dissectors/packet-stun.c
parent4743e63dfa55d49b35df9a97511ac739304cf72f (diff)
Use col_set_str instead of col_add_fstr when adding constant strings to COL_INFO
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30082 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-stun.c')
-rw-r--r--epan/dissectors/packet-stun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-stun.c b/epan/dissectors/packet-stun.c
index d4f7fe187a..32716ea74b 100644
--- a/epan/dissectors/packet-stun.c
+++ b/epan/dissectors/packet-stun.c
@@ -439,7 +439,7 @@ dissect_stun_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* two first bits not NULL => should be a channel-data message*/
/* Clear out stuff in the info column */
- col_add_fstr(pinfo->cinfo, COL_INFO, "ChannelData TURN Message");
+ col_set_str(pinfo->cinfo, COL_INFO, "ChannelData TURN Message");
if (!tree)
return tvb_length(tvb);