From: Eric W. <war...@us...> - 2001-10-12 18:04:18
|
Update of /cvsroot/gaim/gaim/src/protocols/yahoo In directory usw-pr-cvs1:/tmp/cvs-serv30455/protocols/yahoo Modified Files: yay.c Log Message: send offline properly Index: yay.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yay.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- yay.c 2001/09/28 07:46:36 1.16 +++ yay.c 2001/10/12 18:04:15 1.17 @@ -399,9 +399,9 @@ if ((flags & IM_FLAG_AWAY)|| !strlen(message)) return 0; if (flags & IM_FLAG_CHECKBOX) - yahoo_send_message(yd->sess, yd->active_id, who, message); - else yahoo_send_message_offline(yd->sess, yd->active_id, who, message); + else + yahoo_send_message(yd->sess, yd->active_id, who, message); return 1; } |