| hotfix - sic - simple irc client | |
| git clone git://git.suckless.org/sic | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 3160fd2bedd1ff19a72a25113d6b48bad30cdfff | |
| parent 560111d4ba0603fa8bfd2784980de421f97dd287 | |
| Author: Anselm R. Garbe <[email protected]> | |
| Date: Thu, 12 Oct 2006 08:03:37 +0200 | |
| hotfix | |
| Diffstat: | |
| M sic.c | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) | |
| --- | |
| diff --git a/sic.c b/sic.c | |
| @@ -86,7 +86,7 @@ parsein(char *msg) { | |
| return; | |
| } | |
| else if(!strncmp(msg + 1, "t ", 2)) { | |
| - if((p = strchr(&msg[3], ' ')) | |
| + if((p = strchr(&msg[3], ' '))) | |
| *(p++) = 0; | |
| snprintf(bufout, sizeof(bufout), "TOPIC %s :%s\r\n", &msg[3], … | |
| } |