diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-02-24 09:13:43 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-02-24 09:13:43 +0100 |
commit | a080cc0ff48ad2f4ead2aa7a9932323379f6a37d (patch) | |
tree | b3513287e1c54b68c614405d5f4148e6b3046415 /package/busybox/busybox-1.16.0-wget.patch | |
parent | f4f157041eb53f674d21d9a323f7245bc14fd844 (diff) |
busybox: add 1.16.0 fixes
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.16.0-wget.patch')
-rw-r--r-- | package/busybox/busybox-1.16.0-wget.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.16.0-wget.patch b/package/busybox/busybox-1.16.0-wget.patch new file mode 100644 index 000000000..4750a005c --- /dev/null +++ b/package/busybox/busybox-1.16.0-wget.patch @@ -0,0 +1,20 @@ +diff -urpN busybox-1.16.0/networking/wget.c busybox-1.16.0-wget/networking/wget.c +--- busybox-1.16.0/networking/wget.c 2010-01-25 01:59:38.000000000 +0100 ++++ busybox-1.16.0-wget/networking/wget.c 2010-02-21 01:53:53.000000000 +0100 +@@ -546,6 +546,8 @@ int wget_main(int argc UNUSED_PARAM, cha + "passive-ftp\0" No_argument "\xff" + "header\0" Required_argument "\xfe" + "post-data\0" Required_argument "\xfd" ++ /* Ignored (we don't do ssl) */ ++ "no-check-certificate\0" No_argument "\xfc" + ; + #endif + +@@ -590,6 +592,7 @@ int wget_main(int argc UNUSED_PARAM, cha + if (use_proxy) { + proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy"); + if (proxy && proxy[0]) { ++ server.user = NULL; + parse_url(proxy, &server); + } else { + use_proxy = 0; |