Introduction
Introduction Statistics Contact Development Disclaimer Help
document implication of autojoin patch and now tag 1.5 for real :) - ii - irc i…
git clone git://git.suckless.org/ii
Log
Files
Refs
README
LICENSE
---
commit beb466138132439f538008a8bbd8ad43355e687d
parent 85c6300bfb9f9319ae9986e571e02e511b5b0f1f
Author: Nico Golde <[email protected]>
Date: Mon, 24 Jan 2011 17:52:35 +0100
document implication of autojoin patch and now tag 1.5 for real :)
Diffstat:
M CHANGES | 2 ++
M ii.c | 6 +++---
2 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/CHANGES b/CHANGES
@@ -5,6 +5,8 @@
as raw irc (only worked for raw commands in capital lettersin the past) …
- create in FIFO on receiving a privmsg directly instead of requiring a new
/j command first => Thanks Evan Gates
+ this also implies that in FIFOs aren't deleted on channel leaves any lon…
+ this itself creates a channel event again which in turn would recreate t…
- minor changes
1.4 (2008-08-09):
diff --git a/ii.c b/ii.c
@@ -226,7 +226,7 @@ static void proc_channels_privmsg(char *channel, char *buf)…
}
static void proc_channels_input(Channel *c, char *buf) {
- static char infile[256];
+ /* static char infile[256]; */
char *p = NULL;
if(buf[0] != '/' && buf[0] != 0) {
@@ -280,8 +280,8 @@ static void proc_channels_input(Channel *c, char *buf) {
"PART %s :ii - 500 SLOC are to…
write(irc, message, strlen(message));
close(c->fd);
- create_filepath(infile, sizeof(infile), c->name, "in");
- unlink(infile);
+ /*create_filepath(infile, sizeof(infile), c->name, "in…
+ unlink(infile); */
rm_channel(c);
return;
break;
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.