aboutsummaryrefslogtreecommitdiffstats
path: root/pop2.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 /pop2.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 'pop2.c')
-rw-r--r--pop2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pop2.c b/pop2.c
index 2e808b2d..bccc1b6e 100644
--- a/pop2.c
+++ b/pop2.c
@@ -82,9 +82,9 @@ int *countp;
return(PS_ERROR);
/* maybe the user wanted a non-default folder */
- if (queryctl->remotefolder[0])
+ if (queryctl->mailbox[0])
{
- int ok = gen_transact(socket, "FOLD %s", queryctl->remotefolder);
+ int ok = gen_transact(socket, "FOLD %s", queryctl->mailbox);
if (ok != 0)
return(ok);