diff options
| author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-06 04:27:08 +0000 |
|---|---|---|
| committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-06 04:27:08 +0000 |
| commit | 8f3bac021129d61fec55f52f8a613d906eca9a5f (patch) | |
| tree | 6daae413e7927c2de2e98dcebd745ecbc90cc14b /imap.c | |
| parent | 23e59f3d0f7703864d76301dda23659c107f1c0d (diff) | |
| download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |
