diff libpurple/protocols/yahoo/yahoo_friend.c @ 26166:bc31ebd391d3

use "msn/" rather than "wlm/"
author Sulabh Mahajan <sulabh@soc.pidgin.im>
date Wed, 28 Jan 2009 07:01:37 +0000
parents 74bb0836f164
children 1a971a264c3e
line wrap: on
line diff
--- a/libpurple/protocols/yahoo/yahoo_friend.c	Wed Jan 21 09:14:01 2009 +0000
+++ b/libpurple/protocols/yahoo/yahoo_friend.c	Wed Jan 28 07:01:37 2009 +0000
@@ -151,7 +151,7 @@
 	char *who = NULL;
 	int value = 0;
 	int protocol = 0;
-	gboolean wlm = FALSE;
+	gboolean msn = FALSE;
 
 	while (l) {
 		struct yahoo_pair *pair = l->data;
@@ -165,15 +165,15 @@
 				break;
 			case 241:
 				protocol = strtol(pair->value, NULL, 10);
-				wlm = TRUE;
+				msn = TRUE;
 				break;
 		}
 
 		l = l->next;
 	}
 
-	if(wlm)
-		who = g_strconcat("wlm/", temp, NULL);
+	if(msn)
+		who = g_strconcat("msn/", temp, NULL);
 	else
 		who = g_strdup(temp);