diff options
| author | ulim <a.sporto+bee@gmail.com> | 2007-12-19 01:24:32 +0100 | 
|---|---|---|
| committer | ulim <a.sporto+bee@gmail.com> | 2007-12-19 01:24:32 +0100 | 
| commit | 0fbd3a6d26d8fe747bd5e061748e75f397801064 (patch) | |
| tree | 7a731363cfd014eb59ce65734c52cbc3d46b1b73 /irc_commands.c | |
| parent | 793cc254ad2479d95d00266d6cb7ab2bcd158834 (diff) | |
| parent | 2379566b07de55bd0f59503c39ba253ce2556877 (diff) | |
Now with sending via a proxy. The proxy is automatically discovered from your
jabber server.
Also merged in revs 279..288 from upstream (e.g. PING)
Diffstat (limited to 'irc_commands.c')
| -rw-r--r-- | irc_commands.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/irc_commands.c b/irc_commands.c index 287a126f..65f0d6c6 100644 --- a/irc_commands.c +++ b/irc_commands.c @@ -206,7 +206,7 @@ static void irc_cmd_invite( irc_t *irc, char **cmd )  	if( u && c && ( u->ic == c->ic ) )  		if( c->ic && c->ic->acc->prpl->chat_invite )  		{ -			c->ic->acc->prpl->chat_invite( c, "", u->handle ); +			c->ic->acc->prpl->chat_invite( c, u->handle, NULL );  			irc_reply( irc, 341, "%s %s", nick, channel );  			return;  		} | 
