[gaim-migrate @ 10828]

Thu, 02 Sep 2004 12:14:11 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Thu, 02 Sep 2004 12:14:11 +0000
changeset 9936
7cfb397cc0d9
parent 9935
45473da3a39b
child 9937
de14108c7780

[gaim-migrate @ 10828]
<faceprint> KingAnt: &= ~0x00400000 would have been a little more straightforward

It doesn't actually disable the recent buddies group.

src/protocols/oscar/oscar.c file | annotate | diff | comparison | revisions
--- 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;
 

mercurial