aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-01-27 02:13:33 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-01-27 02:13:33 +0000
commit60e6d78753d7cba662a3eee29c05d5b4d52e4551 (patch)
tree741f3948ae0daab8a94f90a20ea9287cde29ffa3 /imap.c
parenta2897f032fb00167b1844c7f298e128e33527733 (diff)
downloadfetchmail-60e6d78753d7cba662a3eee29c05d5b4d52e4551.tar.gz
fetchmail-60e6d78753d7cba662a3eee29c05d5b4d52e4551.tar.bz2
fetchmail-60e6d78753d7cba662a3eee29c05d5b4d52e4551.zip
CR-strip fix.
svn path=/trunk/; revision=833
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/imap.c b/imap.c
index 4e5122fa..f6a68ea9 100644
--- a/imap.c
+++ b/imap.c
@@ -128,7 +128,10 @@ static int imap_getrange(FILE *sockfp, struct query *ctl, int*countp, int*newp)
"SELECT %s",
ctl->mailbox ? ctl->mailbox : "INBOX");
if (ok != 0)
+ {
+ error(0, 0, "mailbox selection failed");
return(ok);
+ }
*countp = count;