Mercurial > pidgin
diff src/protocols/msn/msn.c @ 10225:ecf3ce2e2ab1
[gaim-migrate @ 11357]
This is mostly a patch from Felipe Contreras that eliminates MSN switchboard
errors and fixes MSN buddy icon syncronization, with some tweaks by me.
Thank Felipe if it works, blame me if something broke.
I also fixed a couple of text markup escaping things, fixed a glib warning that
was bugging me, fix a rare SILC crash, and make gtkstatusselector.c compile
(but do nothing) with gtk < 2.4
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Sun, 21 Nov 2004 17:48:09 +0000 |
| parents | 9f358a718f38 |
| children | 3016b1b32339 |
line wrap: on
line diff
--- a/src/protocols/msn/msn.c Sun Nov 21 06:16:23 2004 +0000 +++ b/src/protocols/msn/msn.c Sun Nov 21 17:48:09 2004 +0000 @@ -192,7 +192,7 @@ payload = msn_page_gen_payload(page, &payload_len); - trans = msn_transaction_new("PGD", "%s 1 %d", who, payload_len); + trans = msn_transaction_new(cmdproc, "PGD", "%s 1 %d", who, payload_len); msn_transaction_set_payload(trans, payload, payload_len); @@ -798,7 +798,7 @@ if (!swboard->user_joined) return 0; - msg = msn_message_new(); + msg = msn_message_new(MSN_MSG_TYPING); msn_message_set_content_type(msg, "text/x-msmsgscontrol"); msn_message_set_flag(msg, 'U'); msn_message_set_attr(msg, "TypingUser",
