diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-24 16:06:22 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-24 16:06:22 +0200 |
commit | 03f38289e15c27b93f8fdecf22a03353e4d01096 (patch) | |
tree | 500a849a6e92779ab5386bff0fa0b169487d073b /protocols/jabber/jabber.c | |
parent | c8791f25459aeb32f770c46bd3a3613c9fd2d0e2 (diff) |
Adding protocol-specific chatroom settings. First one to use this: AIM
chatrooms to use exchange numbers other than 4.
Diffstat (limited to 'protocols/jabber/jabber.c')
-rw-r--r-- | protocols/jabber/jabber.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/jabber/jabber.c b/protocols/jabber/jabber.c index 7147a628..01353f8e 100644 --- a/protocols/jabber/jabber.c +++ b/protocols/jabber/jabber.c @@ -440,7 +440,7 @@ static void jabber_remove_buddy( struct im_connection *ic, char *who, char *grou presence_send_request( ic, who, "unsubscribe" ); } -static struct groupchat *jabber_chat_join_( struct im_connection *ic, const char *room, const char *nick, const char *password ) +static struct groupchat *jabber_chat_join_( struct im_connection *ic, const char *room, const char *nick, const char *password, set_t **sets ) { if( strchr( room, '@' ) == NULL ) imcb_error( ic, "Invalid room name: %s", room ); |