From: Jim S. <jse...@us...> - 2002-06-15 17:24:10
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv32385/src Modified Files: conversation.c Log Message: Added typing notification and improved support for Jabber resources. (Thanks, Nathan Walp) Fixed problem with Gaim crashing on non-ASCII buddy alias (Jabber "name" attribute) chars. (Thanks, Ho-seok Lee) Plugged memory leaks and fixed problem with away status not being propagated to conference rooms for jabberd 1.4.2 and above. Index: conversation.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/conversation.c,v retrieving revision 1.357 retrieving revision 1.358 diff -u -d -r1.357 -r1.358 --- conversation.c 7 Jun 2002 02:57:31 -0000 1.357 +++ conversation.c 15 Jun 2002 17:24:07 -0000 1.358 @@ -530,6 +530,7 @@ if (!c->is_chat) { GSList *cn = connections; + serv_send_typing(c->gc, c->name, FALSE); while (cn) { struct gaim_connection *gc = cn->data; cn = cn->next; |