Mercurial > pidgin.yaz
diff libpurple/protocols/oscar/peer.c @ 24884:568b786c36f9
The remainder of a patch from fqueze to fix some incorrect *printf() function
usage when no formatting was actually being used.
Fixes #7910
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Tue, 06 Jan 2009 02:28:10 +0000 |
parents | 20c8c52e209a |
children | ff5e2356683f 6e1967b0f90b |
line wrap: on
line diff
--- a/libpurple/protocols/oscar/peer.c Tue Jan 06 01:25:17 2009 +0000 +++ b/libpurple/protocols/oscar/peer.c Tue Jan 06 02:28:10 2009 +0000 @@ -859,7 +859,7 @@ { gchar *tmp; PurpleConversation *conv; - tmp = g_strdup_printf(_("Attempting to connect via proxy server.")); + tmp = g_strdup(_("Attempting to connect via proxy server.")); conv = purple_conversation_new(PURPLE_CONV_TYPE_IM, account, conn->sn); purple_conversation_write(conv, NULL, tmp, PURPLE_MESSAGE_SYSTEM, time(NULL));