aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-04 21:44:50 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-04 21:44:50 +0000
commitdba153ee6173bcc1e526163e7434d8a5915baf0b (patch)
tree2bd68e148356eb2ca2c2ac1c31f6056b7fbb6793 /imap.c
parentf7fa6d049541c5558289a5e885fc03ee111816e4 (diff)
downloadfetchmail-dba153ee6173bcc1e526163e7434d8a5915baf0b.tar.gz
fetchmail-dba153ee6173bcc1e526163e7434d8a5915baf0b.tar.bz2
fetchmail-dba153ee6173bcc1e526163e7434d8a5915baf0b.zip
RC file syntax change, folder->mailbox, remote->remotename.
svn path=/trunk/; revision=220
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 07ef852b..ac13f068 100644
--- a/imap.c
+++ b/imap.c
@@ -101,7 +101,7 @@ int *countp;
/* find out how many messages are waiting */
ok = gen_transact(socket,
"SELECT %s",
- queryctl->remotefolder[0] ? queryctl->remotefolder : "INBOX");
+ queryctl->mailbox[0] ? queryctl->mailbox : "INBOX");
if (ok != 0)
return(ok);