comparison libpurple/protocols/yahoo/yahoochat.c @ 27963:85fa979b08c2

propagate from branch 'im.pidgin.pidgin' (head 921a6693312cc38dd6dbc93e91d6bf5c60938634) to branch 'im.pidgin.pidgin.yaz' (head 1f0dc57711925c17aef0a129bec2d272c21236ba)
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Tue, 07 Jul 2009 06:09:35 +0000
parents 462a509fb2ad ef5f0cde8d74
children e1cd44c7c7af
comparison
equal deleted inserted replaced
27962:3663c7e208ef 27963:85fa979b08c2
38 38
39 #include "conversation.h" 39 #include "conversation.h"
40 #include "notify.h" 40 #include "notify.h"
41 #include "util.h" 41 #include "util.h"
42 42
43 #include "yahoo.h" 43 #include "libymsg.h"
44 #include "yahoo_packet.h" 44 #include "yahoo_packet.h"
45 #include "yahoochat.h" 45 #include "yahoochat.h"
46 #include "ycht.h" 46 #include "ycht.h"
47 47
48 #define YAHOO_CHAT_ID (1) 48 #define YAHOO_CHAT_ID (1)
646 /* we still get messages after we part, funny that */ 646 /* we still get messages after we part, funny that */
647 return; 647 return;
648 } 648 }
649 649
650 if (!msg) { 650 if (!msg) {
651 purple_debug(PURPLE_DEBUG_MISC, "yahoo", "Got a message packet with no message.\nThis probably means something important, but we're ignoring it.\n"); 651 purple_debug_misc("yahoo", "Got a message packet with no message.\nThis probably means something important, but we're ignoring it.\n");
652 return; 652 return;
653 } 653 }
654 msg2 = yahoo_string_decode(gc, msg, utf8); 654 msg2 = yahoo_string_decode(gc, msg, utf8);
655 msg = yahoo_codes_to_html(msg2); 655 msg = yahoo_codes_to_html(msg2);
656 g_free(msg2); 656 g_free(msg2);