diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2021-05-28 13:33:49 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2021-05-28 13:33:49 +0100 |
commit | d0ca5e2e73a2a8092db4b1966f1da67fd67b8d41 (patch) | |
tree | 9f203032d6a59c7da2ad6ae1aea344c06832f38d /src | |
parent | 3327394394a45c79cd48b2091536f6a6b8ba32a3 (diff) |
Logging: avoid pause during log-open under testsuite
It results in rearranged logging output, causing testsuite case failures
The downside is that we lose debug visbility of the extra process startup
Broken-by: b6c1434e47
Diffstat (limited to 'src')
-rw-r--r-- | src/src/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/log.c b/src/src/log.c index bb6902ea0..ae4f084e6 100644 --- a/src/src/log.c +++ b/src/src/log.c @@ -403,7 +403,7 @@ else if (euid == root_uid) int sock[2]; if (socketpair(AF_UNIX, SOCK_STREAM, 0, sock) == 0) { - const pid_t pid = exim_fork(US"logfile-open"); + const pid_t pid = fork(); if (pid == 0) { (void)close(sock[0]); |