git clone https://orangeshoelaces.net/git/ii.git
Author: Nico Golde on 01/24/2011
Committer: Nico Golde on 01/24/2011
create in FIFO on receiving a PRIVMSG
ii.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/ii.c b/ii.c
index e7d5528..40021bb 100644
--- 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);