changeset 3267:5947e31a01c0

[gaim-migrate @ 3285] SmarterChild, Agent Reuters, and RingMessenger are on ICQ now. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Tue, 21 May 2002 21:26:53 +0000
parents 8cc309b8cb32
children 83f156322833
files src/protocols/oscar/oscar.c
diffstat 1 files changed, 16 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c	Sun May 19 19:09:15 2002 +0000
+++ b/src/protocols/oscar/oscar.c	Tue May 21 21:26:53 2002 +0000
@@ -1150,22 +1150,22 @@
 
 	if (info->present & AIM_USERINFO_PRESENT_CAPABILITIES)
 		caps = info->capabilities;
-
-	if (!od->icq && (info->present & AIM_USERINFO_PRESENT_FLAGS)) {
-		if (info->flags & AIM_FLAG_ACTIVEBUDDY)
-			type |= UC_AB;
-		if (info->flags & AIM_FLAG_UNCONFIRMED)
-			type |= UC_UNCONFIRMED;
-		if (info->flags & AIM_FLAG_ADMINISTRATOR)
-			type |= UC_ADMIN;
-		if (info->flags & AIM_FLAG_AOL)
-			type |= UC_AOL;
-		if (info->flags & AIM_FLAG_FREE)
-			type |= UC_NORMAL;
-		if (info->flags & AIM_FLAG_AWAY)
-			type |= UC_UNAVAILABLE;
-		if (info->flags & AIM_FLAG_WIRELESS)
-			type |= UC_WIRELESS;
+	if (info->flags & AIM_FLAG_ACTIVEBUDDY)
+		type |= UC_AB;
+
+	if ((!od->icq) && (info->present & AIM_USERINFO_PRESENT_FLAGS)) {
+			if (info->flags & AIM_FLAG_UNCONFIRMED)
+				type |= UC_UNCONFIRMED;
+			if (info->flags & AIM_FLAG_ADMINISTRATOR)
+				type |= UC_ADMIN;
+			if (info->flags & AIM_FLAG_AOL)
+				type |= UC_AOL;
+			if (info->flags & AIM_FLAG_FREE)
+				type |= UC_NORMAL;
+			if (info->flags & AIM_FLAG_AWAY)
+				type |= UC_UNAVAILABLE;
+			if (info->flags & AIM_FLAG_WIRELESS)
+				type |= UC_WIRELESS;
 	}
 	if (info->present & AIM_USERINFO_PRESENT_ICQEXTSTATUS) {
 		type = (info->icqinfo.status << 7);