consistency patch
This commit is contained in:
parent
60fc462aa9
commit
81238e16fe
18
sic.c
18
sic.c
@ -72,26 +72,26 @@ parsein(char *msg) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(!strncmp(msg + 1, "j ", 2) && (msg[3] == '#'))
|
if(!strncmp(msg + 1, "j ", 2) && (msg[3] == '#'))
|
||||||
snprintf(bufout, sizeof bufout, "JOIN %s\r\n", &msg[3]);
|
snprintf(bufout, sizeof bufout, "JOIN %s\r\n", msg + 3);
|
||||||
else if(!strncmp(msg + 1, "l ", 2))
|
else if(!strncmp(msg + 1, "l ", 2))
|
||||||
snprintf(bufout, sizeof bufout, "PART %s :sic - 250 LOC are too much!\r\n", &msg[3]);
|
snprintf(bufout, sizeof bufout, "PART %s :sic - 250 LOC are too much!\r\n", msg + 3);
|
||||||
else if(!strncmp(msg + 1, "m ", 2)) {
|
else if(!strncmp(msg + 1, "m ", 2)) {
|
||||||
if((p = strchr(&msg[3], ' ')))
|
if((p = strchr(msg + 3, ' ')))
|
||||||
*(p++) = 0;
|
*(p++) = 0;
|
||||||
privmsg(&msg[3], p);
|
privmsg(msg + 3, p);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if(!strncmp(msg + 1, "s ", 2)) {
|
else if(!strncmp(msg + 1, "s ", 2)) {
|
||||||
strncpy(channel, &msg[3], sizeof channel);
|
strncpy(channel, msg + 3, sizeof channel);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if(!strncmp(msg + 1, "t ", 2)) {
|
else if(!strncmp(msg + 1, "t ", 2)) {
|
||||||
if((p = strchr(&msg[3], ' ')))
|
if((p = strchr(msg + 3, ' ')))
|
||||||
*(p++) = 0;
|
*(p++) = 0;
|
||||||
snprintf(bufout, sizeof bufout, "TOPIC %s :%s\r\n", &msg[3], p);
|
snprintf(bufout, sizeof bufout, "TOPIC %s :%s\r\n", msg + 3, p);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
snprintf(bufout, sizeof bufout, "%s\r\n", &msg[1]);
|
snprintf(bufout, sizeof bufout, "%s\r\n", msg + 1);
|
||||||
write(srv, bufout, strlen(bufout));
|
write(srv, bufout, strlen(bufout));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ parsesrv(char *msg) {
|
|||||||
return; /* don't handle prefix-less server commands */
|
return; /* don't handle prefix-less server commands */
|
||||||
if(!(p = strchr(msg, ' ')))
|
if(!(p = strchr(msg, ' ')))
|
||||||
return;
|
return;
|
||||||
usr = &msg[1];
|
usr = msg + 1;
|
||||||
*p = 0;
|
*p = 0;
|
||||||
cmd = ++p;
|
cmd = ++p;
|
||||||
if((p = strchr(usr, '!')))
|
if((p = strchr(usr, '!')))
|
||||||
|
Loading…
Reference in New Issue
Block a user