Commit 79b0dc3d 79b0dc3d9e025d6863ef1d5bbfdcbe7d7026c779 by Sergey Poznyakoff

Fixed indentation.

1 parent ba8d24dc
......@@ -292,7 +292,8 @@ make_tmp (const char *from, char **tempfile)
}
line = 0;
while (getline (&buf, &n, stdin) > 0) {
while (getline (&buf, &n, stdin) > 0)
{
line++;
if (line == 1)
{
......@@ -465,11 +466,13 @@ deliver (FILE *fp, char *name)
n = 0;
status = 0;
fseek (fp, 0, SEEK_SET);
while (getline(&buf, &n, fp) > 0) {
while (getline(&buf, &n, fp) > 0)
{
status = stream_write (stream, buf, strlen (buf), off, &nwr);
if (status)
{
mailer_err ("error writing to mailbox: %s", mu_errstring (status));
mailer_err ("error writing to mailbox: %s",
mu_errstring (status));
break;
}
off += nwr;
......