aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-08-01 14:47:14 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-08-01 14:47:14 +0000
commitb7603a2011eb67396125ffa6b797a7a893860e65 (patch)
treee5c5403eb343530de2927fe23a22dbd9833b09aa /options.c
parentd048339468f66af732a47e8aa61228a502ef64d8 (diff)
downloadfetchmail-b7603a2011eb67396125ffa6b797a7a893860e65.tar.gz
fetchmail-b7603a2011eb67396125ffa6b797a7a893860e65.tar.bz2
fetchmail-b7603a2011eb67396125ffa6b797a7a893860e65.zip
--kill -> --nokeep.
svn path=/trunk/; revision=1214
Diffstat (limited to 'options.c')
-rw-r--r--options.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/options.c b/options.c
index 5789b0ba..99cd156a 100644
--- a/options.c
+++ b/options.c
@@ -36,7 +36,7 @@
#define LA_ENVELOPE 18
#define LA_USERNAME 19
#define LA_ALL 20
-#define LA_KILL 21
+#define LA_NOKEEP 21
#define LA_KEEP 22
#define LA_FLUSH 23
#define LA_NOREWRITE 24
@@ -81,7 +81,7 @@ static const struct option longoptions[] = {
{"username", required_argument, (int *) 0, LA_USERNAME },
{"all", no_argument, (int *) 0, LA_ALL },
- {"kill", no_argument, (int *) 0, LA_KILL },
+ {"nokeep", no_argument, (int *) 0, LA_NOKEEP },
{"keep", no_argument, (int *) 0, LA_KEEP },
{"flush", no_argument, (int *) 0, LA_FLUSH },
{"norewrite", no_argument, (int *) 0, LA_NOREWRITE },
@@ -246,7 +246,7 @@ struct query *ctl; /* option record to be initialized */
ctl->fetchall = FLAG_TRUE;
break;
case 'K':
- case LA_KILL:
+ case LA_NOKEEP:
ctl->keep = FLAG_FALSE;
break;
case 'k':
@@ -366,7 +366,7 @@ struct query *ctl; /* option record to be initialized */
fputs(" -u, --username specify users's login on server\n", stderr);
fputs(" -a, --all retrieve old and new messages\n", stderr);
- fputs(" -K, --kill delete new messages after retrieval\n", stderr);
+ fputs(" -K, --nokeep delete new messages after retrieval\n", stderr);
fputs(" -k, --keep save new messages after retrieval\n", stderr);
fputs(" -F, --flush delete old messages from server\n", stderr);
fputs(" -n, --norewrite don't rewrite header addresses\n", stderr);