aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-11-06 04:27:08 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-11-06 04:27:08 +0000
commit8f3bac021129d61fec55f52f8a613d906eca9a5f (patch)
tree6daae413e7927c2de2e98dcebd745ecbc90cc14b /imap.c
parent23e59f3d0f7703864d76301dda23659c107f1c0d (diff)
downloadfetchmail-8f3bac021129d61fec55f52f8a613d906eca9a5f.tar.gz
fetchmail-8f3bac021129d61fec55f52f8a613d906eca9a5f.tar.bz2
fetchmail-8f3bac021129d61fec55f52f8a613d906eca9a5f.zip
Ooops...don't exit where a return will do.
svn path=/trunk/; revision=490
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/imap.c b/imap.c
index b0e39936..d3814038 100644
--- a/imap.c
+++ b/imap.c
@@ -147,7 +147,7 @@ int num;
int ok;
if ((ok = gen_transact(sockfp, "FETCH %d FLAGS", num)) != 0)
- exit(PS_ERROR);
+ return(PS_ERROR);
return(seen);
}