From c6b8062782e502c83a1842ec8c9a96ef767e2f10 Mon Sep 17 00:00:00 2001 From: Andrew Pamment Date: Wed, 28 Feb 2018 09:46:18 +1000 Subject: [PATCH] round and round we go --- src/www_msgs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/www_msgs.c b/src/www_msgs.c index 897354a..649aeec 100644 --- a/src/www_msgs.c +++ b/src/www_msgs.c @@ -773,9 +773,9 @@ static char *www_wordwrap(char *content, int cutoff) { last_space = &ret[at]; } at++; - } else if (content[i] == '>' && line_count < 4) { - quote_line = 1; - ret[at++] = content[i]; + if (content[i] == '>' && line_count < 4) { + quote_line = 1; + } } else { ret[at++] = content[i]; }