aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-buddylist.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2007-11-09 05:57:45 +0000
committerAnders Broman <anders.broman@ericsson.com>2007-11-09 05:57:45 +0000
commit29cf34d1c2fa3d56559fd08cfa4bc5616f9cbf14 (patch)
tree7d776e5437a0dcea40526fb5aac10e0bade418a8 /epan/dissectors/packet-aim-buddylist.c
parent9da07f5246bc998bafc256bd795a3a25f23954b6 (diff)
Apply yet another set of the optimization patches:
janitor work, replace col_add_fstr/ col_set_fstr. svn path=/trunk/; revision=23411
Diffstat (limited to 'epan/dissectors/packet-aim-buddylist.c')
-rw-r--r--epan/dissectors/packet-aim-buddylist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-aim-buddylist.c b/epan/dissectors/packet-aim-buddylist.c
index aacbb10a7d..e5fe559b9d 100644
--- a/epan/dissectors/packet-aim-buddylist.c
+++ b/epan/dissectors/packet-aim-buddylist.c
@@ -112,7 +112,7 @@ static int dissect_aim_buddylist_offgoing(tvbuff_t *tvb, packet_info *pinfo, pro
int buddyname_length = aim_get_buddyname( buddyname, tvb, offset, offset + 1 );
if (check_col(pinfo->cinfo, COL_INFO)) {
- col_add_fstr(pinfo->cinfo, COL_INFO, "Offgoing Buddy");
+ col_set_str(pinfo->cinfo, COL_INFO, "Offgoing Buddy");
col_append_fstr(pinfo->cinfo, COL_INFO, ": %s",
format_text(buddyname, buddyname_length));
}