diff options
| author | C. McEnroe | 2020-11-24 19:15:57 -0500 | 
|---|---|---|
| committer | C. McEnroe | 2020-11-24 19:15:57 -0500 | 
| commit | d6b4aed4df4ca8cae5024fabb84cb8ef6821f2cb (patch) | |
| tree | f725c9b801294e27d3c09cc92aa39d9003bf3a78 /chat.c | |
| parent | e4aa21d7888be1c21fac21e3ef28a3015f46d0c5 (diff) | |
Split /exec lines by \r as well as \n
This fixes local rendering of /exec toilet --irc, which outputs \r\n
line endings.
Diffstat (limited to 'chat.c')
| -rw-r--r-- | chat.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -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);  	}  } | 
