summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2024-11-14 12:38:11 -0600
committerAlexander M Pickering <alex@cogarr.net>2024-11-14 12:38:11 -0600
commit9b800a8390ca856a7ff8c2e0bd11f9299882877f (patch)
tree015be3a366970072ceb34ddb6d40aa613df9b058
parent45d04bddfb28742c48702e7b6e2ebd5be92aea45 (diff)
downloadbusybox-w32-packaging-9b800a8390ca856a7ff8c2e0bd11f9299882877f.tar.gz
busybox-w32-packaging-9b800a8390ca856a7ff8c2e0bd11f9299882877f.tar.bz2
busybox-w32-packaging-9b800a8390ca856a7ff8c2e0bd11f9299882877f.zip
Fix typo
-rw-r--r--libressl.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/libressl.patch b/libressl.patch
index 9b67d86..c2adedb 100644
--- a/libressl.patch
+++ b/libressl.patch
@@ -135,7 +135,7 @@ index 9f1dd67ec..7e8da6df2 100644
135 static void tls_xwrite(tls_state_t *tls, int len) 135 static void tls_xwrite(tls_state_t *tls, int len)
136 { 136 {
137diff --git a/networking/wget.c b/networking/wget.c 137diff --git a/networking/wget.c b/networking/wget.c
138index 6a64836fb..022734611 100644 138index 6a64836fb..8b3915cf3 100644
139--- a/networking/wget.c 139--- a/networking/wget.c
140+++ b/networking/wget.c 140+++ b/networking/wget.c
141@@ -169,7 +169,11 @@ 141@@ -169,7 +169,11 @@
@@ -608,7 +608,7 @@ index 6a64836fb..022734611 100644
608 key = index_in_strings(keywords, G.wget_buf) + 1; 608 key = index_in_strings(keywords, G.wget_buf) + 1;
609 if (key == KEY_content_length) { 609 if (key == KEY_content_length) {
610 G.content_len = BB_STRTOOFF(str, NULL, 10); 610 G.content_len = BB_STRTOOFF(str, NULL, 10);
611+ printf("Got content length: %jd\n", G.content_len) 611+ printf("Got content length: %jd\n", G.content_len);
612 if (G.content_len < 0 || errno) { 612 if (G.content_len < 0 || errno) {
613 bb_error_msg_and_die("content-length %s is garbage", str); 613 bb_error_msg_and_die("content-length %s is garbage", str);
614 } 614 }