From 602e02546c7e38b36e4f741dad369ff46ccdea4b Mon Sep 17 00:00:00 2001 From: Phil Pennock Date: Thu, 10 May 2012 01:50:47 -0400 Subject: [PATCH] fix non-bw case, late slip not re-run by my earlier tests --- src/src/daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/src/daemon.c b/src/src/daemon.c index de794f693..9b19c6249 100644 --- a/src/src/daemon.c +++ b/src/src/daemon.c @@ -1042,7 +1042,7 @@ The preparation code decodes options and sets up the relevant data. We do this first, so that we can return non-zero if there are any syntax errors, and also write to stderr. */ -else if (daemon_listen) +if (daemon_listen && !inetd_wait_mode) { int *default_smtp_port; int sep; -- 2.30.2