# HG changeset patch # User Eric Warmenhoven # Date 1000665044 0 # Node ID b41c88001ab55e61c0a231c2bfe6cfcbaf2cb726 # Parent 1a1d68e12a8682f0649a22d6be74e987f3d5a9bc [gaim-migrate @ 2298] hi committer: Tailor Script diff -r 1a1d68e12a86 -r b41c88001ab5 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sun Sep 16 07:05:14 2001 +0000 +++ b/src/protocols/oscar/oscar.c Sun Sep 16 18:30:44 2001 +0000 @@ -1131,11 +1131,11 @@ if (info->flags & AIM_FLAG_UNCONFIRMED) type |= UC_UNCONFIRMED; - else if (info->flags & AIM_FLAG_ADMINISTRATOR) + if (info->flags & AIM_FLAG_ADMINISTRATOR) type |= UC_ADMIN; - else if (info->flags & AIM_FLAG_AOL) + if (info->flags & AIM_FLAG_AOL) type |= UC_AOL; - else if (info->flags & AIM_FLAG_FREE) + if (info->flags & AIM_FLAG_FREE) type |= UC_NORMAL; if (info->flags & AIM_FLAG_AWAY) type |= UC_UNAVAILABLE;