diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-12-09 23:19:35 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-12-09 23:19:35 +0000 |
commit | c058ff976bbbbf43ef11c262f21440e61244f73e (patch) | |
tree | fb5f6438555ab486d44925f7fd06f0d4265ec10d /protocols/oscar | |
parent | de0337481fca3894c406a2724da30af8cc8bae2f (diff) |
Added /invite support for Jabber chatrooms (and fixed the argument order
to chat_invite).
Diffstat (limited to 'protocols/oscar')
-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 96983738..8d45acf0 100644 --- a/protocols/oscar/oscar.c +++ b/protocols/oscar/oscar.c @@ -2508,7 +2508,7 @@ void oscar_chat_msg(struct groupchat *c, char *message, int msgflags) /* return (ret >= 0); */ } -void oscar_chat_invite(struct groupchat *c, char *message, char *who) +void oscar_chat_invite(struct groupchat *c, char *who, char *message) { struct im_connection *ic = c->ic; struct oscar_data * od = (struct oscar_data *)ic->proto_data; |