From da5b512c5f7120ec3b00620d0a5f58cc6e29ccc5 Mon Sep 17 00:00:00 2001 From: Andrew Pamment Date: Wed, 28 Feb 2018 09:26:24 +1000 Subject: [PATCH] fiddle with word wrap --- src/www_msgs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www_msgs.c b/src/www_msgs.c index ab728e3..0ffd34e 100644 --- a/src/www_msgs.c +++ b/src/www_msgs.c @@ -726,7 +726,7 @@ static char *www_wordwrap(char *content, int cutoff) { } if (content[i] == '\r' && content[i+1] != '\r') { - if (content[i+1] == ' ' || quote_line == 1) { + if (content[i+1] == ' ' || quote_line != 1) { content[at++] = '\r'; line_count = 0; quote_line = 0;