Mercurial > pidgin
changeset 9936:3578cec797db
[gaim-migrate @ 10828]
<faceprint> KingAnt: &= ~0x00400000 would have been a little more straightforward
It doesn't actually disable the recent buddies group.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 02 Sep 2004 12:14:11 +0000 |
parents | bb0c04ebcdef |
children | 354487bb9586 |
files | src/protocols/oscar/oscar.c |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c Thu Sep 02 04:47:16 2004 +0000 +++ b/src/protocols/oscar/oscar.c Thu Sep 02 12:14:11 2004 +0000 @@ -7302,13 +7302,14 @@ presence |= 0x00400000; aim_ssi_setpresence(sess, presence); } else { - presence &= 0xFFBFFFFF; + presence &= ~0x00400000; aim_ssi_setpresence(sess, presence); } } static GaimPluginPrefFrame * -get_plugin_pref_frame(GaimPlugin *plugin) { +get_plugin_pref_frame(GaimPlugin *plugin) +{ GaimPluginPrefFrame *frame; GaimPluginPref *ppref;