aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-10-13 16:00:11 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-10-13 16:00:11 +0000
commit777b6d5a983ceed7d3ef7673718292cbf31f69a1 (patch)
tree248fd868109648a379ff5d2813fd6737868f9c17 /options.c
parent673425dce38fefbec673686b7284afd1db6753f8 (diff)
downloadfetchmail-777b6d5a983ceed7d3ef7673718292cbf31f69a1.tar.gz
fetchmail-777b6d5a983ceed7d3ef7673718292cbf31f69a1.tar.bz2
fetchmail-777b6d5a983ceed7d3ef7673718292cbf31f69a1.zip
Fix ETRN mode.
svn path=/trunk/; revision=1507
Diffstat (limited to 'options.c')
-rw-r--r--options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/options.c b/options.c
index 11d4cdef..f2432ed3 100644
--- a/options.c
+++ b/options.c
@@ -285,7 +285,7 @@ struct query *ctl; /* option record to be initialized */
strcpy(buf, optarg);
cp = strtok(buf, ",");
do {
- save_str(&ctl->mailboxes, -1, optarg);
+ save_str(&ctl->mailboxes, -1, cp);
} while
((cp = strtok((char *)NULL, ",")));
break;
@@ -294,7 +294,7 @@ struct query *ctl; /* option record to be initialized */
strcpy(buf, optarg);
cp = strtok(buf, ",");
do {
- save_str(&ctl->smtphunt, -1, cp);
+ save_str(&ctl->smtphunt, TRUE, cp);
} while
((cp = strtok((char *)NULL, ",")));
ocount++;