aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 484a45e5..d6b8349d 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -735,7 +735,7 @@ int fd;
* Try to pass up an error if the MDA returned nonzero status,
* on the assumption that this means it was reporting failure.
*/
- if (WIFEXITED(status) == 0 || WEXITSTATUS(status) != 0)
+ if (WIFEXITED(status) == 0 && WEXITSTATUS(status) != 0)
{
perror("fetchmail: MDA exited abnormally or returned nonzero status");
err = -1;