comparison src/protocols/oscar/oscar.c @ 2288:b41c88001ab5

[gaim-migrate @ 2298] hi committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 16 Sep 2001 18:30:44 +0000
parents 4f2a6268c5ec
children a0f6ead876ca
comparison
equal deleted inserted replaced
2287:1a1d68e12a86 2288:b41c88001ab5
1129 info = va_arg(ap, struct aim_userinfo_s *); 1129 info = va_arg(ap, struct aim_userinfo_s *);
1130 va_end(ap); 1130 va_end(ap);
1131 1131
1132 if (info->flags & AIM_FLAG_UNCONFIRMED) 1132 if (info->flags & AIM_FLAG_UNCONFIRMED)
1133 type |= UC_UNCONFIRMED; 1133 type |= UC_UNCONFIRMED;
1134 else if (info->flags & AIM_FLAG_ADMINISTRATOR) 1134 if (info->flags & AIM_FLAG_ADMINISTRATOR)
1135 type |= UC_ADMIN; 1135 type |= UC_ADMIN;
1136 else if (info->flags & AIM_FLAG_AOL) 1136 if (info->flags & AIM_FLAG_AOL)
1137 type |= UC_AOL; 1137 type |= UC_AOL;
1138 else if (info->flags & AIM_FLAG_FREE) 1138 if (info->flags & AIM_FLAG_FREE)
1139 type |= UC_NORMAL; 1139 type |= UC_NORMAL;
1140 if (info->flags & AIM_FLAG_AWAY) 1140 if (info->flags & AIM_FLAG_AWAY)
1141 type |= UC_UNAVAILABLE; 1141 type |= UC_UNAVAILABLE;
1142 1142
1143 if (info->idletime) { 1143 if (info->idletime) {