Update of /cvsroot/gaim/gaim/plugins
In directory usw-pr-cvs1:/tmp/cvs-serv24612/plugins
Modified Files:
chatlist.c
Log Message:
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.
Index: chatlist.c
===================================================================
RCS file: /cvsroot/gaim/gaim/plugins/chatlist.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- chatlist.c 2 Mar 2002 04:52:21 -0000 1.11
+++ chatlist.c 4 Mar 2002 03:04:48 -0000 1.12
@@ -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, "&Exchange=%d", &exchange);
- c = t + strlen("&Exchange=x");
+ sscanf(t, "&Exchange=%d", &exchange);
+ c = t + strlen("&Exchange=x");
break;
} else
name[len - 1] = *t;
|