diff options
author | marcus <marcus@FreeBSD.org> | 2003-05-18 20:18:37 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-05-18 20:18:37 +0000 |
commit | fefa9585ec714a2cbcad70b97d53ff8ef5353f92 (patch) | |
tree | 6fb823ac30d2de846401cf730691b1acdef3697e /net-im/gaim/files | |
parent | 835df250698d7d96c75393e52d6a51e861d8feee (diff) | |
download | FreeBSD-ports-fefa9585ec714a2cbcad70b97d53ff8ef5353f92.zip FreeBSD-ports-fefa9585ec714a2cbcad70b97d53ff8ef5353f92.tar.gz |
Update to 0.63.
Submitted by: Matthew Luckie <mjl@luckie.org.nz>
Diffstat (limited to 'net-im/gaim/files')
-rw-r--r-- | net-im/gaim/files/patch-src_protocols_irc_irc.c | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/net-im/gaim/files/patch-src_protocols_irc_irc.c b/net-im/gaim/files/patch-src_protocols_irc_irc.c deleted file mode 100644 index e042b2e..0000000 --- a/net-im/gaim/files/patch-src_protocols_irc_irc.c +++ /dev/null @@ -1,35 +0,0 @@ ---- src/protocols/irc/irc.c.orig Wed Mar 12 11:50:45 2003 -+++ src/protocols/irc/irc.c Wed Mar 12 12:20:56 2003 -@@ -699,9 +699,11 @@ - - if ((c = irc_find_chat(gc, text))) { - char buf[IRC_BUF_LEN]; -- gaim_chat_set_topic(GAIM_CHAT(c), NULL, po); -+ char *utf8 = irc_recv_convert(gc, po); -+ gaim_chat_set_topic(GAIM_CHAT(c), NULL, utf8); - g_snprintf(buf, sizeof(buf), _("<B>%s has changed the topic to: %s</B>"), -- text, po); -+ text, utf8); -+ g_free(utf8); - - gaim_conversation_write(c, NULL, buf, -1, WFLAG_SYSTEM, time(NULL)); - } -@@ -1616,12 +1618,14 @@ - { - struct gaim_conversation *c = irc_find_chat(gc, word[3]); - char *topic = *word_eol[4] == ':' ? word_eol[4] + 1 : word_eol[4]; -- char buf[IRC_BUF_LEN]; - - if (c) { -- gaim_chat_set_topic(GAIM_CHAT(c), nick, topic); -+ char buf[IRC_BUF_LEN]; -+ char *utf8 = irc_recv_convert(gc, topic); -+ gaim_chat_set_topic(GAIM_CHAT(c), nick, utf8); - g_snprintf(buf, sizeof(buf), -- _("<B>%s has changed the topic to: %s</B>"), nick, topic); -+ _("<B>%s has changed the topic to: %s</B>"), nick, utf8); -+ g_free(utf8); - - gaim_conversation_write(c, NULL, buf, -1, WFLAG_SYSTEM, time(NULL)); - } - |