From d3833f31da28808274c6d08804646116be7dabb8 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 13 Mar 1998 20:20:19 +0000 Subject: Re-engineer the UIDL stuff to avoid having the status flag collide with message numbers. svn path=/trunk/; revision=1699 --- options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index f104c1a2..ffa50e47 100644 --- a/options.c +++ b/options.c @@ -312,7 +312,7 @@ struct query *ctl; /* option record to be initialized */ strcpy(buf, optarg); cp = strtok(buf, ","); do { - save_str(&ctl->mailboxes, -1, cp); + save_str(&ctl->mailboxes, cp, 0); } while ((cp = strtok((char *)NULL, ","))); break; @@ -321,7 +321,7 @@ struct query *ctl; /* option record to be initialized */ strcpy(buf, optarg); cp = strtok(buf, ","); do { - save_str(&ctl->smtphunt, TRUE, cp); + save_str(&ctl->smtphunt, cp, TRUE); } while ((cp = strtok((char *)NULL, ","))); ocount++; -- cgit v1.2.3