Update of /cvsroot/gaim/gaim/src/protocols/oscar
In directory usw-pr-cvs1:/tmp/cvs-serv22007/src/protocols/oscar
Modified Files:
oscar.c
Log Message:
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.
Index: oscar.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/oscar.c,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -d -r1.139 -r1.140
--- oscar.c 23 May 2002 00:06:01 -0000 1.139
+++ oscar.c 29 May 2002 01:23:38 -0000 1.140
@@ -2503,7 +2503,7 @@
* parse-icq-status-message function knows if it is putting it's message in
* an info window because the name will _not_ be in od->evilhack. For getting
* only the away message the contact's UIN is put in od->evilhack. */
- if (budlight = find_buddy(gc, who)) {
+ if ((budlight = find_buddy(gc, who))) {
if ((budlight->uc >> 7) & (AIM_ICQ_STATE_AWAY || AIM_ICQ_STATE_DND || AIM_ICQ_STATE_OUT || AIM_ICQ_STATE_BUSY || AIM_ICQ_STATE_CHAT)) {
if (budlight->caps & AIM_CAPS_ICQSERVERRELAY)
g_show_info_text(gc, who, 0, buf, NULL);
|