summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-02-08 19:03:57 +0100
committerFelix Fietkau <nbd@openwrt.org>2016-02-08 19:04:39 +0100
commitf0754619b9ee216b0cb5fc7484f861e876781984 (patch)
treea344085c012f556c61094e9a79ee4d99d6255167
parent2e0918c7e0612449024caaaa8d44fb2d7a33f5f3 (diff)
downloaduclient-f0754619b9ee216b0cb5fc7484f861e876781984.tar.gz
uclient-fetch: fix inconsistencies in help text (thx, Hannu Nyman)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
-rw-r--r--uclient-fetch.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/uclient-fetch.c b/uclient-fetch.c
index f65fab2..065742e 100644
--- a/uclient-fetch.c
+++ b/uclient-fetch.c
@@ -440,11 +440,11 @@ static int usage(const char *progname)
fprintf(stderr,
"Usage: %s [options] <URL>\n"
"Options:\n"
- " -4: Use IPv4 only\n"
- " -6: Use IPv6 only\n"
- " -q: Turn off status messages\n"
- " -O <file>: Redirect output to file (use \"-\" for stdout)\n"
- " -P <dir>: Set directory for output files\n"
+ " -4 Use IPv4 only\n"
+ " -6 Use IPv6 only\n"
+ " -q Turn off status messages\n"
+ " -O <file> Redirect output to file (use \"-\" for stdout)\n"
+ " -P <dir> Set directory for output files\n"
" --user=<user> HTTP authentication username\n"
" --password=<password> HTTP authentication password\n"
" --user-agent|-U <str> Set HTTP user agent\n"
@@ -454,8 +454,8 @@ static int usage(const char *progname)
" --proxy=on|off|-Y on|off Enable/disable env var configured proxy\n"
"\n"
"HTTPS options:\n"
- " --ca-certificate=<cert>: Load CA certificates from file <cert>\n"
- " --no-check-certificate: don't validate the server's certificate\n"
+ " --ca-certificate=<cert> Load CA certificates from file <cert>\n"
+ " --no-check-certificate don't validate the server's certificate\n"
"\n", progname);
return 1;
}