Update of /cvsroot/gaim/gaim/src/protocols/oscar
In directory usw-pr-cvs1:/tmp/cvs-serv9466/src/protocols/oscar
Modified Files:
oscar.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: oscar.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/oscar.c,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -d -r1.153 -r1.154
--- oscar.c 6 Oct 2002 03:08:47 -0000 1.153
+++ oscar.c 6 Oct 2002 05:01:50 -0000 1.154
@@ -2776,8 +2776,10 @@
else {
struct buddy *b = find_buddy(gc, name);
if (b && (b->uc & UC_TYPINGNOT)) {
- if (typing)
+ if (typing == TYPING)
aim_mtn_send(odata->sess, 0x0001, name, 0x0002);
+ else if (typing == TYPED)
+ aim_mtn_send(odata->sess, 0x0001, name, 0x0001);
else
aim_mtn_send(odata->sess, 0x0001, name, 0x0000);
}
|