comparison src/protocols/oscar/oscar.c @ 3279:86fdd015f40e

[gaim-migrate @ 3297] Fewer compile warnings! Thanks, Ari Pollak (I even spelled your name correctly) Also, I think one of these warnings may have fixed a sporadic Hotmail auth failure; let me know if you still get those. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 29 May 2002 01:23:38 +0000
parents 6231e0f0ee9e
children 76a0e566d834
comparison
equal deleted inserted replaced
3278:30ca1b76ad0c 3279:86fdd015f40e
2501 * and show it in the same window as info. g_show_info_text gets the status 2501 * and show it in the same window as info. g_show_info_text gets the status
2502 * message if the third arg is 0 (this seems really gross to me). The 2502 * message if the third arg is 0 (this seems really gross to me). The
2503 * parse-icq-status-message function knows if it is putting it's message in 2503 * parse-icq-status-message function knows if it is putting it's message in
2504 * an info window because the name will _not_ be in od->evilhack. For getting 2504 * an info window because the name will _not_ be in od->evilhack. For getting
2505 * only the away message the contact's UIN is put in od->evilhack. */ 2505 * only the away message the contact's UIN is put in od->evilhack. */
2506 if (budlight = find_buddy(gc, who)) { 2506 if ((budlight = find_buddy(gc, who))) {
2507 if ((budlight->uc >> 7) & (AIM_ICQ_STATE_AWAY || AIM_ICQ_STATE_DND || AIM_ICQ_STATE_OUT || AIM_ICQ_STATE_BUSY || AIM_ICQ_STATE_CHAT)) { 2507 if ((budlight->uc >> 7) & (AIM_ICQ_STATE_AWAY || AIM_ICQ_STATE_DND || AIM_ICQ_STATE_OUT || AIM_ICQ_STATE_BUSY || AIM_ICQ_STATE_CHAT)) {
2508 if (budlight->caps & AIM_CAPS_ICQSERVERRELAY) 2508 if (budlight->caps & AIM_CAPS_ICQSERVERRELAY)
2509 g_show_info_text(gc, who, 0, buf, NULL); 2509 g_show_info_text(gc, who, 0, buf, NULL);
2510 else { 2510 else {
2511 char *state_msg = gaim_icq_status((budlight->uc & 0xff80) >> 7); 2511 char *state_msg = gaim_icq_status((budlight->uc & 0xff80) >> 7);