mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
test/smtp-dummy: uncrustify
For some reason lost in the mists of time this code was indented 8 spaces.
This commit is contained in:
parent
10071f8b50
commit
1fa5bd282e
1 changed files with 174 additions and 174 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue