aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/wget-proxy-user.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/busybox/wget-proxy-user.patch')
-rw-r--r--main/busybox/wget-proxy-user.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/main/busybox/wget-proxy-user.patch b/main/busybox/wget-proxy-user.patch
new file mode 100644
index 0000000000..1d06809525
--- /dev/null
+++ b/main/busybox/wget-proxy-user.patch
@@ -0,0 +1,12 @@
+diff --git a/networking/wget.c b/networking/wget.c
+index 9d813dc..5977024 100644
+--- a/networking/wget.c
++++ b/networking/wget.c
+@@ -590,6 +590,7 @@ int wget_main(int argc UNUSED_PARAM, char **argv)
+ 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;