# HG changeset patch # User Luke Schierer # Date 1038320586 0 # Node ID 9891c1458eb7545c23328b071a78d41b3c3a8a13 # Parent 9178da61c19fcbc7174ec0642325c810eb844992 [gaim-migrate @ 4202] "Sorry, but in my last direct IM patch (633589), I broke receiving typing notifications. Here is the one line patch that fixes it back the way it should be. Basically, the if(flags == 0x000c) should have been if(flags & 0x000c) At the moment, receiving typing notifications is broken in gaim since this is in a block under if(flags & 0x0002) so, the == 0x000c will never be true. " -- Graham Booker (gbooker) committer: Tailor Script diff -r 9178da61c19f -r 9891c1458eb7 src/protocols/oscar/ft.c --- a/src/protocols/oscar/ft.c Tue Nov 26 14:13:11 2002 +0000 +++ b/src/protocols/oscar/ft.c Tue Nov 26 14:23:06 2002 +0000 @@ -1174,7 +1174,7 @@ if (flags & 0x0002) { int ret = 0; - if (flags == 0x000c) { + if (flags & 0x000c) { if ((userfunc = aim_callhandler(sess, conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING))) ret = userfunc(sess, &fr, snptr, 1); return ret;