Gitweb:
https://git.exim.org/exim.git/commitdiff/66e8d6abf5d8641241ff26eab09b183c4059120c
Commit: 66e8d6abf5d8641241ff26eab09b183c4059120c
Parent: 9d783bb9f39bca59e720d0c543499b372c412441
Author: Jeremy Harris <jgh146exb@???>
AuthorDate: Sun Jun 6 22:03:35 2021 +0100
Committer: Jeremy Harris <jgh146exb@???>
CommitDate: Sun Jun 6 22:03:35 2021 +0100
Fix non-Linux build
---
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 2d8b223..ebe3be3 100644
--- a/src/src/daemon.c
+++ b/src/src/daemon.c
@@ -2504,13 +2504,13 @@ for (;;)
if (FD_ISSET(lfd, &fds))
{
EXIM_SOCKLEN_T alen = sizeof(accepted);
+#if defined(TCP_INFO)
struct tcp_info ti;
socklen_t tlen = sizeof(ti);
/* If monitoring the backlog is wanted, grab for later logging */
smtp_listen_backlog = 0;
-#if defined(TCP_INFO)
if ( smtp_backlog_monitor > 0
&& getsockopt(lfd, IPPROTO_TCP, TCP_INFO, &ti, &tlen) == 0)
{