diff plugins/chatlist.c @ 3000:6d95285533df

[gaim-migrate @ 3013] Played with the font loader some more in gtkimhtml.c This one is the closest I've done to Eric's, I think. It should cause the least problems. Also fixed the chatlist plugin again. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 04 Mar 2002 03:04:49 +0000
parents 7239a392486c
children ee79ca85fe0f
line wrap: on
line diff
--- a/plugins/chatlist.c	Sun Mar 03 23:53:28 2002 +0000
+++ b/plugins/chatlist.c	Mon Mar 04 03:04:49 2002 +0000
@@ -178,7 +178,7 @@
 		if (!g_strncasecmp(AOL_SRCHSTR, c, strlen(AOL_SRCHSTR))) {
 			char *t;
 			int len = 0;
-			int exchange = 4;
+			int exchange = 5;
 			char *name = NULL;
 
 			c += strlen(AOL_SRCHSTR);
@@ -190,8 +190,8 @@
 					name[len - 1] = ' ';
 				else if (*t == '&') {
 					name[len - 1] = 0;
-					sscanf(t, "&amp;Exchange=%d", &exchange);
-					c = t + strlen("&amp;Exchange=x");
+					sscanf(t, "&Exchange=%d", &exchange);
+					c = t + strlen("&Exchange=x");
 					break;
 				} else
 					name[len - 1] = *t;