From ec014e8c69e65b56063735ee47cb29173cae113e Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sun, 18 Apr 1999 18:32:03 +0000 Subject: Enable expunge to controil POP2 and POP3 checkpointing. svn path=/trunk/; revision=2439 --- options.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index 9d8cc486..8152bea3 100644 --- a/options.c +++ b/options.c @@ -426,7 +426,7 @@ struct query *ctl; /* option record to be initialized */ case 'l': case LA_LIMIT: c = xatoi(optarg, &errflag); - ctl->limit = NUM_VALUE(c); + ctl->limit = NUM_VALUE_IN(c); break; case 'r': case LA_FOLDER: @@ -468,17 +468,17 @@ struct query *ctl; /* option record to be initialized */ case 'b': case LA_BATCHLIMIT: c = xatoi(optarg, &errflag); - ctl->batchlimit = NUM_VALUE(c); + ctl->batchlimit = NUM_VALUE_IN(c); break; case 'B': case LA_FETCHLIMIT: c = xatoi(optarg, &errflag); - ctl->fetchlimit = NUM_VALUE(c); + ctl->fetchlimit = NUM_VALUE_IN(c); break; case 'e': case LA_EXPUNGE: c = xatoi(optarg, &errflag); - ctl->expunge = NUM_VALUE(c); + ctl->expunge = NUM_VALUE_IN(c); break; case 'm': case LA_MDA: @@ -528,7 +528,7 @@ struct query *ctl; /* option record to be initialized */ case 'w': case LA_WARNINGS: c = xatoi(optarg, &errflag); - ctl->warnings = NUM_VALUE(c); + ctl->warnings = NUM_VALUE_IN(c); break; case LA_CONFIGDUMP: -- cgit v1.2.3