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/yahoo/yahoo.c | |
parent | de0337481fca3894c406a2724da30af8cc8bae2f (diff) |
Added /invite support for Jabber chatrooms (and fixed the argument order
to chat_invite).
Diffstat (limited to 'protocols/yahoo/yahoo.c')
-rw-r--r-- | protocols/yahoo/yahoo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/yahoo/yahoo.c b/protocols/yahoo/yahoo.c index 28a72877..625f3d1c 100644 --- a/protocols/yahoo/yahoo.c +++ b/protocols/yahoo/yahoo.c @@ -305,7 +305,7 @@ static void byahoo_chat_msg( struct groupchat *c, char *message, int flags ) yahoo_conference_message( yd->y2_id, NULL, c->data, c->title, message, 1 ); } -static void byahoo_chat_invite( struct groupchat *c, char *msg, char *who ) +static void byahoo_chat_invite( struct groupchat *c, char *who, char *msg ) { struct byahoo_data *yd = (struct byahoo_data *) c->ic->proto_data; |