Update of /cvsroot/gaim/gaim/src/protocols/msn
In directory usw-pr-cvs1:/tmp/cvs-serv3632/src/protocols/msn
Modified Files:
msn.c
Log Message:
A nice little msn fix by Gerd Behrmann
Index: msn.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/msn/msn.c,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -d -r1.68 -r1.69
--- msn.c 31 Mar 2002 01:51:35 -0000 1.68
+++ msn.c 2 Apr 2002 01:04:35 -0000 1.69
@@ -947,6 +947,7 @@
} else if (!g_strcasecmp(which, "BL") && pos) {
gc->deny = g_slist_append(gc->deny, g_strdup(who));
} else if (!g_strcasecmp(which, "RL")) {
+ if (pos) {
while(perm) {
if(!g_strcasecmp(perm->data, who))
new = 0;
@@ -967,6 +968,7 @@
g_snprintf(msg, sizeof(msg), "The user %s (%s) wants to add you to their buddy list",ap->user, url_decode(ap->friend));
do_ask_dialog(msg, ap, msn_accept_add, msn_cancel_add);
}
+ }
if (pos != tot)
return 1; /* this isn't the last one in the RL, so return. */
|