enabled joining channels with password

This commit is contained in:
nion@aurora 2007-06-22 13:40:24 +02:00
parent ab89c0c4f5
commit fcef69cf32

5
ii.c
View File

@ -237,10 +237,11 @@ static void proc_channels_input(Channel *c, char *buf) {
p = strchr(&buf[3], ' ');
if(p) *p = 0;
if((buf[3]=='#')||(buf[3]=='&')||(buf[3]=='+')||(buf[3]=='!')){
snprintf(message, PIPE_BUF, "JOIN %s\r\n", &buf[3]);
if(p) snprintf(message, PIPE_BUF, "JOIN %s %s\r\n", &buf[3], p + 1);
else snprintf(message, PIPE_BUF, "JOIN %s\r\n", &buf[3]);
add_channel(&buf[3]);
}
else{
else {
if(p){
add_channel(&buf[3]);
proc_channels_privmsg(&buf[3], p + 1);