Mercurial > pidgin
diff src/protocols/msn/userlist.c @ 9194:364aa73323b5
[gaim-migrate @ 9989]
A few things here. First, some spelling corrections. Second, make sure we
always send a group ID when we add somebody. Default to 0 if nothing else.
We were sending an ADD in some cases without a group ID, and then MSN sent
back a 224 - Invalid Group (I swear that never happened before?), and we
misinterpreted the error and figured the passport was invalid. Third, don't
spit out the "Unhandled command 'BLP'" errors.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Sun, 06 Jun 2004 03:19:41 +0000 |
| parents | 502707ca1836 |
| children | d5487fdec696 |
line wrap: on
line diff
--- a/src/protocols/msn/userlist.c Sun Jun 06 02:39:08 2004 +0000 +++ b/src/protocols/msn/userlist.c Sun Jun 06 03:19:41 2004 +0000 @@ -549,7 +549,7 @@ int group_id; const char *list; const char *store_name; - + group_id = -1; if (group_name != NULL) @@ -566,12 +566,11 @@ user = msn_userlist_find_user(userlist, who); - /* First we're going to check if it's alredy there. */ + /* First we're going to check if it's already there. */ if (user_is_there(user, list_id, group_id)) { list = lists[list_id]; - gaim_debug_error("msn", "User '%s' is alredy there: %s\n", - who, list); + gaim_debug_error("msn", "User '%s' is already there: %s\n", who, list); return; }
