aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2024-07-10 11:54:23 +0100
committerRon Yorston <rmy@pobox.com>2024-07-10 11:54:23 +0100
commit2dc17b7c80c803119dd2214bce4406b252ae2e9f (patch)
tree3eb11a8170e4164e2781a9be9925fc4bfa6f5053 /networking
parent29a24869e403e7364301e6fd7c745d327ed2d8c6 (diff)
parent0af28b84e58307422f807ddbdafc67a68f71eb64 (diff)
downloadbusybox-w32-2dc17b7c80c803119dd2214bce4406b252ae2e9f.tar.gz
busybox-w32-2dc17b7c80c803119dd2214bce4406b252ae2e9f.tar.bz2
busybox-w32-2dc17b7c80c803119dd2214bce4406b252ae2e9f.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'networking')
-rw-r--r--networking/wget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c
index f9e463f6c..f3c0c89f3 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -1635,7 +1635,7 @@ IF_DESKTOP( "no-parent\0" No_argument "\xf0")
1635 bit = 1; 1635 bit = 1;
1636 words = wget_user_headers; 1636 words = wget_user_headers;
1637 while (*words) { 1637 while (*words) {
1638 if (strstr(hdr, words) == hdr) { 1638 if (strcasestr(hdr, words) == hdr) {
1639 G.user_headers |= bit; 1639 G.user_headers |= bit;
1640 break; 1640 break;
1641 } 1641 }