From: Mark D. <the...@us...> - 2002-10-06 05:01:52
|
Update of /cvsroot/gaim/gaim/src/protocols/jabber In directory usw-pr-cvs1:/tmp/cvs-serv9466/src/protocols/jabber Modified Files: jabber.c Log Message: I like typing notifcation. I think I'll marry it. Also, if I'm going to go around mentioning gaim on resumes, I can't very well tell people to look for "KingAnt"... :-) Index: jabber.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/jabber/jabber.c,v retrieving revision 1.65 retrieving revision 1.66 diff -u -d -r1.65 -r1.66 --- jabber.c 6 Oct 2002 01:46:26 -0000 1.65 +++ jabber.c 6 Oct 2002 05:01:49 -0000 1.66 @@ -2209,7 +2209,7 @@ if((realwho = get_realwho(gjc, who, FALSE, NULL)) == NULL) return 0; - + x = xmlnode_new_tag("message"); xmlnode_put_attrib(x, "to", realwho); xmlnode_insert_tag(x, "gaim"); @@ -2217,9 +2217,9 @@ y = xmlnode_insert_tag(x, "x"); xmlnode_put_attrib(y, "xmlns", "jabber:x:event"); - if(typing) + if(typing == TYPING) xmlnode_insert_tag(y, "composing"); - + gjab_send(((struct jabber_data *)gc->proto_data)->gjc, x); xmlnode_free(x); g_free(realwho); |