diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-31 04:33:33 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-31 04:33:33 +0000 |
commit | c5bbf37680d64c68382b26054eae002cb3b80ae9 (patch) | |
tree | f6163ee2f9464fc805845d45bf82194ae6ff6104 /options.c | |
parent | 2c3eed5cf983cf1bddd997dc5b70661d5c785d68 (diff) | |
download | fetchmail-c5bbf37680d64c68382b26054eae002cb3b80ae9.tar.gz fetchmail-c5bbf37680d64c68382b26054eae002cb3b80ae9.tar.bz2 fetchmail-c5bbf37680d64c68382b26054eae002cb3b80ae9.zip |
Better option documentation.
svn path=/trunk/; revision=1210
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -50,6 +50,7 @@ #define LA_MONITOR 32 #define LA_YYDEBUG 33 +/* options still left: CDegGhHjJoOqQRTUwWxXYzZ */ static const char *shortoptions = "?Vcsvd:NqL:f:i:p:UP:A:t:E:u:akKFnl:r:S:b:B:m:I:M:y"; @@ -86,7 +87,7 @@ static const struct option longoptions[] = { {"norewrite", no_argument, (int *) 0, LA_NOREWRITE }, {"limit", required_argument, (int *) 0, LA_LIMIT }, - {"folder", required_argument, (int *) 0, LA_FOLDER }, + {"folder", required_argument, (int *) 0, LA_FOLDER }, {"smtphost", required_argument, (int *) 0, LA_SMTPHOST }, {"batchlimit",required_argument, (int *) 0, LA_BATCHLIMIT }, {"fetchlimit",required_argument, (int *) 0, LA_FETCHLIMIT }, |