diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-04-26 20:57:26 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-04-26 20:57:26 +0100 |
commit | 173de73b7a0d9e715178397bd2753c0d5928f141 (patch) | |
tree | 325851d2c7717fb11f305284d721828499da618c /src | |
parent | be24b950ae0db88b1c9811b3a028e95133c55efa (diff) |
Fix reporting of 2-phase queue-runner daemon, in daemon start log line and in exiwhat
Diffstat (limited to 'src')
-rw-r--r-- | src/src/daemon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/src/daemon.c b/src/src/daemon.c index 6560da1d4..f011b2b84 100644 --- a/src/src/daemon.c +++ b/src/src/daemon.c @@ -1901,7 +1901,8 @@ else if (f.daemon_listen) ip_address_item * ipa; uschar * p; uschar * qinfo = queue_interval > 0 - ? string_sprintf("-q%s", readconf_printtime(queue_interval)) + ? string_sprintf("-q%s%s", + f.queue_2stage ? "q" : "", readconf_printtime(queue_interval)) : US"no queue runs"; /* Build a list of listening addresses in big_buffer, but limit it to 10 |