# HG changeset patch # User Sean Egan # Date 1022016413 0 # Node ID 5947e31a01c0d9e19006a4338ad2988e8d852a57 # Parent 8cc309b8cb32f99eecf0f9497faa2938e0f06622 [gaim-migrate @ 3285] SmarterChild, Agent Reuters, and RingMessenger are on ICQ now. committer: Tailor Script diff -r 8cc309b8cb32 -r 5947e31a01c0 src/protocols/oscar/oscar.c --- 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);