diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-20 22:18:40 -0700 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-20 22:18:40 -0700 |
commit | df1fb67d1dbf52d138f63e0d917dda2412d4fc0b (patch) | |
tree | 866ffc05c6a60b39213ea85c1f4bdf5642ebb30f /protocols/oscar/oscar.c | |
parent | 17fa798247bf1a9b18de2c4848039f940d819f31 (diff) |
Consistency; Using OPT_T(YP|HINK)ING for outgoing typing notfication crap
too.
Diffstat (limited to 'protocols/oscar/oscar.c')
-rw-r--r-- | protocols/oscar/oscar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/oscar/oscar.c b/protocols/oscar/oscar.c index a088624a..1ca932f3 100644 --- a/protocols/oscar/oscar.c +++ b/protocols/oscar/oscar.c @@ -2447,7 +2447,7 @@ int gaim_parsemtn(aim_session_t *sess, aim_frame_t *fr, ...) int oscar_send_typing(struct im_connection *ic, char * who, int typing) { struct oscar_data *od = ic->proto_data; - return( aim_im_sendmtn(od->sess, 1, who, typing ? 0x0002 : 0x0000) ); + return( aim_im_sendmtn(od->sess, 1, who, (typing & OPT_TYPING) ? 0x0002 : 0x0000) ); } void oscar_chat_msg(struct groupchat *c, char *message, int msgflags) |