test/smtp-dummy: uncrustify

For some reason lost in the mists of time this code was indented 8 spaces.
This commit is contained in:
David Bremner 2017-08-26 11:41:40 -03:00
parent 10071f8b50
commit 1fa5bd282e

View file

@ -220,17 +220,17 @@ main (int argc, char *argv[])
}
/* Reached if pid == 0 (the child process). */
/* Close stdout so that the one interested in pid value will
also get EOF. */
* also get EOF. */
close (STDOUT_FILENO);
/* dup2() will re-reserve fd of stdout (1) (opportunistically),
in case fd of stderr (2) is open. If that was not open we
don't care fd of stdout (1) either. */
* in case fd of stderr (2) is open. If that was not open we
* don't care fd of stdout (1) either. */
dup2 (STDERR_FILENO, STDOUT_FILENO);
/* This process is now out of reach of shell's job control.
To resolve the rare but possible condition where this
"daemon" is started but never connected this process will
(only) have 30 seconds to exist. */
* To resolve the rare but possible condition where this
* "daemon" is started but never connected this process will
* (only) have 30 seconds to exist. */
alarm (30);
}