changeset 16998:8e7a4295ff85

Finish removal of yahoo system message escaping. I must have been asleep earlier.
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 10 May 2007 01:45:10 +0000
parents 546cecfdcbb9
children 06e354620f6c
files libpurple/protocols/yahoo/yahoo.c
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/yahoo/yahoo.c	Thu May 10 01:35:14 2007 +0000
+++ b/libpurple/protocols/yahoo/yahoo.c	Thu May 10 01:45:10 2007 +0000
@@ -906,7 +906,7 @@
 static void yahoo_process_sysmessage(PurpleConnection *gc, struct yahoo_packet *pkt)
 {
 	GSList *l = pkt->hash;
-	char *prim, *me = NULL, *msg = NULL, *escmsg = NULL;
+	char *prim, *me = NULL, *msg = NULL;
 
 	while (l) {
 		struct yahoo_pair *pair = l->data;
@@ -924,9 +924,8 @@
 
 	prim = g_strdup_printf(_("Yahoo! system message for %s:"),
 	                       me?me:purple_connection_get_display_name(gc));
-	purple_notify_info(NULL, NULL, prim, escmsg);
+	purple_notify_info(NULL, NULL, prim, msg);
 	g_free(prim);
-	g_free(escmsg);
 }
 
 struct yahoo_add_request {