diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-03-06 03:13:36 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-03-06 03:13:36 +0000 |
commit | f5975a5ae7a4bddb032f8aed1e8cc727531a6f91 (patch) | |
tree | ec8bc2203130c78ca5475f38b25b139d39828425 /driver.c | |
parent | 2520ad54cf89894c178e5dca3cb7968edf481157 (diff) | |
download | fetchmail-f5975a5ae7a4bddb032f8aed1e8cc727531a6f91.tar.gz fetchmail-f5975a5ae7a4bddb032f8aed1e8cc727531a6f91.tar.bz2 fetchmail-f5975a5ae7a4bddb032f8aed1e8cc727531a6f91.zip |
#59281: fetchmail: still loops on Ctrl-C
svn path=/trunk/; revision=2785
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1482,8 +1482,9 @@ const int maxfetch; /* maximum number of messages to fetch */ if (js == THROW_SIGPIPE) { report(stdout, - _("SIGPIPE thrown from an MDA or a stream socket error")); + _("SIGPIPE thrown from an MDA or a stream socket error\n")); ok = PS_SOCKET; + goto cleanUp; } else if (js == THROW_TIMEOUT) { |