aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-11-20 22:15:37 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-11-20 22:15:37 +0000
commit9d290b78f452806710b9283a340e2ff40f88a2d6 (patch)
treeaa84e2beed7ce90df18cba87be1c55e2c1c63688 /options.c
parent29b9dc79d6a307d6761e936424b7b83cd91ea5a2 (diff)
downloadfetchmail-9d290b78f452806710b9283a340e2ff40f88a2d6.tar.gz
fetchmail-9d290b78f452806710b9283a340e2ff40f88a2d6.tar.bz2
fetchmail-9d290b78f452806710b9283a340e2ff40f88a2d6.zip
lmtp does not take an argument.
svn path=/trunk/; revision=2192
Diffstat (limited to 'options.c')
-rw-r--r--options.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/options.c b/options.c
index 41925c68..df473b3c 100644
--- a/options.c
+++ b/options.c
@@ -75,10 +75,10 @@ static const char *shortoptions =
static const struct option longoptions[] = {
/* this can be const because all flag fields are 0 and will never get set */
{"help", no_argument, (int *) 0, LA_HELP },
- {"version", no_argument, (int *) 0, LA_VERSION },
+ {"version", no_argument, (int *) 0, LA_VERSION },
{"check", no_argument, (int *) 0, LA_CHECK },
- {"silent", no_argument, (int *) 0, LA_SILENT },
- {"verbose", no_argument, (int *) 0, LA_VERBOSE },
+ {"silent", no_argument, (int *) 0, LA_SILENT },
+ {"verbose", no_argument, (int *) 0, LA_VERBOSE },
{"daemon", required_argument, (int *) 0, LA_DAEMON },
{"nodetach", no_argument, (int *) 0, LA_NODETACH },
{"quit", no_argument, (int *) 0, LA_QUIT },
@@ -100,27 +100,27 @@ static const struct option longoptions[] = {
{"qvirtual", required_argument, (int *) 0, LA_QVIRTUAL },
{"user", required_argument, (int *) 0, LA_USERNAME },
- {"username", required_argument, (int *) 0, LA_USERNAME },
+ {"username", required_argument, (int *) 0, LA_USERNAME },
{"all", no_argument, (int *) 0, LA_ALL },
{"nokeep", no_argument, (int *) 0, LA_NOKEEP },
- {"keep", no_argument, (int *) 0, LA_KEEP },
+ {"keep", no_argument, (int *) 0, LA_KEEP },
{"flush", no_argument, (int *) 0, LA_FLUSH },
{"norewrite", no_argument, (int *) 0, LA_NOREWRITE },
{"limit", required_argument, (int *) 0, LA_LIMIT },
{"warnings", required_argument, (int *) 0, LA_WARNINGS },
- {"folder", required_argument, (int *) 0, LA_FOLDER },
+ {"folder", required_argument, (int *) 0, LA_FOLDER },
{"smtphost", required_argument, (int *) 0, LA_SMTPHOST },
{"smtpaddress", required_argument, (int *) 0, LA_SMTPADDR },
{"antispam", required_argument, (int *) 0, LA_ANTISPAM },
{"batchlimit",required_argument, (int *) 0, LA_BATCHLIMIT },
{"fetchlimit",required_argument, (int *) 0, LA_FETCHLIMIT },
- {"expunge", required_argument, (int *) 0, LA_EXPUNGE },
+ {"expunge", required_argument, (int *) 0, LA_EXPUNGE },
{"mda", required_argument, (int *) 0, LA_MDA },
{"bsmtp", required_argument, (int *) 0, LA_BSMTP },
- {"lmtp", required_argument, (int *) 0, LA_LMTP },
+ {"lmtp", no_argument, (int *) 0, LA_LMTP },
#ifdef INET6
{"netsec", required_argument, (int *) 0, LA_NETSEC },