Skip to content
Snippets Groups Projects
Commit 394f45cf authored by rswindell's avatar rswindell
Browse files

Insure that the message body ends in a \r\n - this should fix Nelgin's problem

with a message whose tail/tagline is corrupted or something (doesn't end in a
\r\n).
parent b1c5b63d
No related branches found
No related tags found
No related merge requests found
......@@ -704,7 +704,7 @@ while(client.socket.is_connected && !quit) {
if(hdr!=null && body!=null) /* both, separate with blank line */
writeln("");
if(body!=null) {
write(body);
writeln(truncsp(body));
msgs_read++;
}
writeln(".");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment