diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-11 12:32:21 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-11 12:32:21 +0000 |
commit | ca2017ba290f56f036ae9fdfb99e88f33372a4c4 (patch) | |
tree | 0d750b5853b80e147644f16ac4ef4d2c9d142421 | |
parent | 57382ccdb69c04128dcbbe9e510e579ab2edde25 (diff) | |
download | fetchmail-ca2017ba290f56f036ae9fdfb99e88f33372a4c4.tar.gz fetchmail-ca2017ba290f56f036ae9fdfb99e88f33372a4c4.tar.bz2 fetchmail-ca2017ba290f56f036ae9fdfb99e88f33372a4c4.zip |
Restored idfile option.
svn path=/trunk/; revision=295
-rw-r--r-- | options.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,7 +43,7 @@ #define LA_HELP 23 #define LA_YYDEBUG 24 -static char *shortoptions = "P:p:VaKkvS:m:sFd:f:u:r:L:qN?"; +static char *shortoptions = "P:p:VaKkvS:m:sFd:f:i:u:r:L:qN?"; static struct option longoptions[] = { {"version", no_argument, (int *) 0, LA_VERSION }, {"all", no_argument, (int *) 0, LA_ALL }, @@ -249,6 +249,7 @@ struct hostrec *queryctl; fputs(" Options are as follows:\n",stderr); fputs(" -?, --help display this option help\n", stderr); fputs(" -V, --version display version info\n", stderr); + fputs(" -s, --silent work silently\n", stderr); fputs(" -v, --verbose work noisily (diagnostic output)\n", stderr); fputs(" -d, --daemon run as a daemon once per n seconds\n", stderr); fputs(" -c, --check check for messages without fetching\n", stderr); @@ -267,7 +268,6 @@ struct hostrec *queryctl; fputs(" -K, --kill delete new messages after retrieval\n", stderr); fputs(" -k, --keep save new messages after retrieval\n", stderr); fputs(" -S, --smtphost set SMTP forwarding host\n", stderr); - fputs(" -s, --silent work silently\n", stderr); fputs(" -r, --remote specify remote folder name\n", stderr); return(-1); } |