Commit c9e3e0a5 c9e3e0a5304f8fd2666bbbed322f9def33b51e23 by Sergey Poznyakoff

(util_save_outgoing): Removed extra newline at the end of the envelope `from' line.

1 parent 46ff2b83
......@@ -894,7 +894,7 @@ util_save_outgoing (message_t msg, char *savefile)
time(&t);
tm = gmtime(&t);
strftime (date, sizeof (date), "%a %b %e %H:%M:%S %Y%n", tm);
strftime (date, sizeof (date), "%a %b %e %H:%M:%S %Y", tm);
fprintf (outfile, "From %s %s\n", mail_whoami(), date);
message_get_stream (msg, &stream);
......