create in FIFO on receiving a PRIVMSG - ii - irc it, simple FIFO based irc client
 (HTM) git clone git://git.suckless.org/ii
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 566fa01e471cbbe318640150b44fa59bfe50f9a8
 (DIR) parent 9dfc1526f92a033d8f5cb90b2b4a523e91bd621e
 (HTM) Author: Nico Golde <nion@suckless.org>
       Date:   Mon, 24 Jan 2011 16:13:04 +0100
       
       create in FIFO on receiving a PRIVMSG
       Diffstat:
         M ii.c                                |       1 +
       
       1 file changed, 1 insertion(+), 0 deletions(-)
       ---
 (DIR) diff --git a/ii.c b/ii.c
       @@ -211,6 +211,7 @@ static void print_out(char *channel, char *buf) {
                if(strstr(buf, server)) channel="";
                create_filepath(outfile, sizeof(outfile), channel, "out");
                if(!(out = fopen(outfile, "a"))) return;
       +        if(channel && channel[0]) add_channel(channel);
        
                strftime(buft, sizeof(buft), "%F %R", localtime(&t));
                fprintf(out, "%s %s\n", buft, buf);