From: Sean E. <sea...@us...> - 2002-03-06 00:18:06
|
Update of /cvsroot/gaim/gaim/src/protocols/oscar In directory usw-pr-cvs1:/tmp/cvs-serv21133/src/protocols/oscar Modified Files: ft.c Log Message: Lots of people have a problem with people who were added to their MSN reverse list while they were offline, not being prompted to add them to their allow list. Jason Willis fixed that. Also added a global buddy icon animation preference by Luke Schierer. Index: ft.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/ft.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- ft.c 2 Mar 2002 04:52:21 -0000 1.14 +++ ft.c 6 Mar 2002 00:18:02 -0000 1.15 @@ -1115,7 +1115,7 @@ i = aim_recv(conn->fd, msg2, 1024); else i = aim_recv(conn->fd, msg2, payloadlength - recvd); - if (i == 0) { + if (i <= 0) { free(msg); return -1; } |