aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/usage.h2
-rw-r--r--networking/wget.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h
index c2ffb6d6e..643d35fad 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -5083,7 +5083,7 @@
5083 IF_FEATURE_WGET_LONG_OPTIONS( \ 5083 IF_FEATURE_WGET_LONG_OPTIONS( \
5084 "[-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document file]\n" \ 5084 "[-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document file]\n" \
5085 " [--header 'header: value'] [-Y|--proxy on/off] [-P DIR]\n" \ 5085 " [--header 'header: value'] [-Y|--proxy on/off] [-P DIR]\n" \
5086 " [-U|--user-agent agent] url" \ 5086 " [--no-check-certificate] [-U|--user-agent agent] url" \
5087 ) \ 5087 ) \
5088 IF_NOT_FEATURE_WGET_LONG_OPTIONS( \ 5088 IF_NOT_FEATURE_WGET_LONG_OPTIONS( \
5089 "[-csq] [-O file] [-Y on/off] [-P DIR] [-U agent] url" \ 5089 "[-csq] [-O file] [-Y on/off] [-P DIR] [-U agent] url" \
diff --git a/networking/wget.c b/networking/wget.c
index 9d813dcc2..2b9ba55c3 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -546,6 +546,8 @@ int wget_main(int argc UNUSED_PARAM, char **argv)
546 "passive-ftp\0" No_argument "\xff" 546 "passive-ftp\0" No_argument "\xff"
547 "header\0" Required_argument "\xfe" 547 "header\0" Required_argument "\xfe"
548 "post-data\0" Required_argument "\xfd" 548 "post-data\0" Required_argument "\xfd"
549 /* Ignored (we don't do ssl) */
550 "no-check-certificate\0" No_argument "\xfc"
549 ; 551 ;
550#endif 552#endif
551 553