diff options
Diffstat (limited to 'irc_send.c')
| -rw-r--r-- | irc_send.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| @@ -43,9 +43,10 @@ void irc_send_login( irc_t *irc )  	irc_send_num( irc,   2, ":Host %s is running BitlBee " BITLBEE_VERSION " " ARCH "/" CPU ".", irc->root->host );  	irc_send_num( irc,   3, ":%s", IRCD_INFO );  	irc_send_num( irc,   4, "%s %s %s %s", irc->root->host, BITLBEE_VERSION, UMODES UMODES_PRIV, CMODES ); -	irc_send_num( irc,   5, "PREFIX=(ov)@+ CHANTYPES=%s CHANMODES=,,,%s NICKLEN=%d NETWORK=BitlBee " -	                        "CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 :are supported by this server", -	                        CTYPES, CMODES, MAX_NICK_LENGTH - 1 ); +	irc_send_num( irc,   5, "PREFIX=(ohv)@%%+ CHANTYPES=%s CHANMODES=,,,%s NICKLEN=%d CHANNELLEN=%d " +	                        "NETWORK=BitlBee SAFELIST CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 " +	                        ":are supported by this server", +	                        CTYPES, CMODES, MAX_NICK_LENGTH - 1, MAX_NICK_LENGTH - 1 );  	irc_send_motd( irc );  } | 
