Mercurial > pidgin
diff src/protocols/msn/session.c @ 10773:888d4c328be5
[gaim-migrate @ 12382]
Patch 1149564 from Felipe Contreras:
"[MSN] Cleanups and fixes
I know it fixes a multiple conversation close
notification but it probably fixes more stuff.
I don't know exactly what are the diferences with what
Stu did."
I munged it a bit, to make it compile and stuff.
Please test this, I might have broken it.
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Sat, 02 Apr 2005 16:38:33 +0000 |
| parents | bf5e48215158 |
| children | 0317ad172e8d |
line wrap: on
line diff
--- a/src/protocols/msn/session.c Sat Apr 02 16:07:20 2005 +0000 +++ b/src/protocols/msn/session.c Sat Apr 02 16:38:33 2005 +0000 @@ -208,7 +208,8 @@ } MsnSwitchBoard * -msn_session_get_swboard(MsnSession *session, const char *username) +msn_session_get_swboard(MsnSession *session, const char *username, + MsnSBFlag flag) { MsnSwitchBoard *swboard; @@ -222,6 +223,8 @@ msn_switchboard_request_add_user(swboard, username); } + swboard->flag |= flag; + return swboard; }
