compatibility for bitlbee and stuff - ii - irc it, simple FIFO based irc client
HTML git clone git://git.suckless.org/ii
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit cf1f7a56b404e56d122002fbfc1c26cf62b44771
DIR parent 0fb686f3f4812da77602cdedd75430f510c41556
HTML Author: nion@localhost <unknown>
Date: Tue, 7 Nov 2006 20:21:24 +0100
compatibility for bitlbee and stuff
Diffstat:
M ii.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/ii.c b/ii.c
@@ -248,7 +248,7 @@ static void proc_channels_input(Channel *c, char *buf)
p = strchr(&buf[3], ' ');
if(p)
*p = 0;
- if(buf[3]=='#'){
+ if((buf[3]=='#')||(buf[3]=='&')||(buf[3]=='+')||(buf[3]=='!')){
snprintf(message, PIPE_BUF, "JOIN %s\r\n", &buf[3]);
add_channel(&buf[3]);
}