aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
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++;