diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-04-18 18:32:03 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-04-18 18:32:03 +0000 |
commit | ec014e8c69e65b56063735ee47cb29173cae113e (patch) | |
tree | 3b03a971a283036041e191348868847f3f1d3670 /options.c | |
parent | 42da1e74000a8d3507c8ba11848bd2f3998d1cd2 (diff) | |
download | fetchmail-ec014e8c69e65b56063735ee47cb29173cae113e.tar.gz fetchmail-ec014e8c69e65b56063735ee47cb29173cae113e.tar.bz2 fetchmail-ec014e8c69e65b56063735ee47cb29173cae113e.zip |
Enable expunge to controil POP2 and POP3 checkpointing.
svn path=/trunk/; revision=2439
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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: |