From d6b4aed4df4ca8cae5024fabb84cb8ef6821f2cb Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 24 Nov 2020 19:15:57 -0500 Subject: Split /exec lines by \r as well as \n This fixes local rendering of /exec toilet --irc, which outputs \r\n line endings. --- chat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chat.c b/chat.c index 223583e..296c0c4 100644 --- a/chat.c +++ b/chat.c @@ -100,7 +100,7 @@ static void execRead(void) { if (!len) return; buf[len] = '\0'; for (char *ptr = buf; ptr;) { - char *line = strsep(&ptr, "\n"); + char *line = strsep(&ptr, "\r\n"); if (line[0]) command(execID, line); } } @@ -112,7 +112,7 @@ static void utilRead(void) { if (!len) return; buf[len] = '\0'; for (char *ptr = buf; ptr;) { - char *line = strsep(&ptr, "\n"); + char *line = strsep(&ptr, "\r\n"); if (line[0]) uiFormat(Network, Warm, NULL, "%s", line); } } -- cgit 1.4.1