about summary refs log tree commit diff
path: root/irc.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-25 02:27:38 -0500
committerJune McEnroe <june@causal.agency>2019-01-25 02:27:38 -0500
commit5fcd80178336020090fecd4b74dd41bb8892a211 (patch)
tree8181022e253e30f27cff83d7b336954d4363d828 /irc.c
parentRemove FreeBSD-specific iswascii call (diff)
downloadcatgirl-5fcd80178336020090fecd4b74dd41bb8892a211.tar.gz
catgirl-5fcd80178336020090fecd4b74dd41bb8892a211.zip
Use memmem in place of strnstr
Diffstat (limited to 'irc.c')
-rw-r--r--irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.c b/irc.c
index 508678e..1d5d914 100644
--- a/irc.c
+++ b/irc.c
@@ -140,7 +140,7 @@ retry:
 
 	char *crlf;
 	char *line = buf;
-	while (NULL != (crlf = strnstr(line, "\r\n", &buf[len] - line))) {
+	while (NULL != (crlf = memmem(line, &buf[len] - line, "\r\n", 2))) {
 		crlf[0] = '\0';
 		if (self.raw) {
 			uiFmt(TagRaw, UICold, "\3%d>>>\3 %s", IRCGray, line);