document implication of autojoin patch and now tag 1.5 for real :)
This commit is contained in:
parent
85c6300bfb
commit
beb4661381
2
CHANGES
2
CHANGES
@ -5,6 +5,8 @@
|
|||||||
as raw irc (only worked for raw commands in capital lettersin the past) => Thanks samurai!
|
as raw irc (only worked for raw commands in capital lettersin the past) => Thanks samurai!
|
||||||
- create in FIFO on receiving a privmsg directly instead of requiring a new
|
- create in FIFO on receiving a privmsg directly instead of requiring a new
|
||||||
/j command first => Thanks Evan Gates
|
/j command first => Thanks Evan Gates
|
||||||
|
this also implies that in FIFOs aren't deleted on channel leaves any longer because
|
||||||
|
this itself creates a channel event again which in turn would recreate the file
|
||||||
- minor changes
|
- minor changes
|
||||||
|
|
||||||
1.4 (2008-08-09):
|
1.4 (2008-08-09):
|
||||||
|
6
ii.c
6
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 void proc_channels_input(Channel *c, char *buf) {
|
||||||
static char infile[256];
|
/* static char infile[256]; */
|
||||||
char *p = NULL;
|
char *p = NULL;
|
||||||
|
|
||||||
if(buf[0] != '/' && buf[0] != 0) {
|
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 too much\r\n", c->name);
|
"PART %s :ii - 500 SLOC are too much\r\n", c->name);
|
||||||
write(irc, message, strlen(message));
|
write(irc, message, strlen(message));
|
||||||
close(c->fd);
|
close(c->fd);
|
||||||
create_filepath(infile, sizeof(infile), c->name, "in");
|
/*create_filepath(infile, sizeof(infile), c->name, "in");
|
||||||
unlink(infile);
|
unlink(infile); */
|
||||||
rm_channel(c);
|
rm_channel(c);
|
||||||
return;
|
return;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user