# HG changeset patch
# User Wesley Lin
# Date 1135579851 0
# Node ID 5255e7717f7caedfe49cd9f71dc612c7b3d1a60f
# Parent 3e9413c9162eed36dfe1676e83c048263e244cc8
[gaim-migrate @ 15004]
sf patch #1304398, from Wesley Lin
Get rid of an extra
in oscar info display
committer: Mark Doliner
diff -r 3e9413c9162e -r 5255e7717f7c src/protocols/oscar/oscar.c
--- a/src/protocols/oscar/oscar.c Mon Dec 26 06:27:39 2005 +0000
+++ b/src/protocols/oscar/oscar.c Mon Dec 26 06:50:51 2005 +0000
@@ -5093,7 +5093,7 @@
away_utf8 = oscar_encoding_to_utf8(tmp, userinfo->away, userinfo->away_len);
g_free(tmp);
if (away_utf8 != NULL) {
- g_string_append_printf(str, "\n
%s
", away_utf8);
+ g_string_append_printf(str, "\n
%s", away_utf8);
g_free(away_utf8);
}
}
@@ -5103,7 +5103,7 @@
info_utf8 = oscar_encoding_to_utf8(tmp, userinfo->info, userinfo->info_len);
g_free(tmp);
if (info_utf8 != NULL) {
- g_string_append_printf(str, "\n
%s
", info_utf8);
+ g_string_append_printf(str, "\n
%s", info_utf8);
g_free(info_utf8);
}
}