Fix spurious detection of timeout while writing to transport filter
authorJeremy Harris <jgh146exb@wizmail.org>
Sun, 15 Mar 2020 21:08:28 +0000 (21:08 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Sun, 15 Mar 2020 21:08:28 +0000 (21:08 +0000)
doc/doc-txt/ChangeLog
src/src/transport.c

index 001f919d784a04bc8695eb9a78d3144cc4d085bd..4875289b34f22a62d8389e8b65e4c0a40625613d 100644 (file)
@@ -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
 -----------------
index 3eb1c8097e04b3657b9e9f072b84d00d1dea7a70..e4aaa7debd889e8e2789883ddafa5c80337485cf 100644 (file)
@@ -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;