From 130212d30d47e588c2bc03edcfce11bf3857da03 Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Sun, 15 Mar 2020 21:08:28 +0000 Subject: [PATCH 1/1] Fix spurious detection of timeout while writing to transport filter --- doc/doc-txt/ChangeLog | 2 ++ src/src/transport.c | 1 + 2 files changed, 3 insertions(+) diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 001f919d7..4875289b3 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -147,6 +147,8 @@ JH/30 When an pipelined-connect fails at the first response, assume incorrect cached capability (perhaps the peer reneged?) and immediately retry in non-pipelined mode. +JH/31 Fix spurious detection of timeout while writing to transport filter. + Exim version 4.93 ----------------- diff --git a/src/src/transport.c b/src/src/transport.c index 3eb1c8097..e4aaa7deb 100644 --- a/src/src/transport.c +++ b/src/src/transport.c @@ -265,6 +265,7 @@ for (int i = 0; i < 100; i++) } else /* Timeout wanted. */ { + sigalrm_seen = FALSE; ALARM(local_timeout); rc = tpt_write(fd, block, len, more, tctx->options); save_errno = errno; -- 2.25.1