diff options
author | Denys Vlasenko | 2017-01-20 14:12:10 +0100 |
---|---|---|
committer | Denys Vlasenko | 2017-01-20 14:12:10 +0100 |
commit | a0aae9f71442366ec429657c437fd7dd815978fd (patch) | |
tree | 3c9cee2b6b6191e6e310bbdb681b6ed8ddb2d509 /networking/wget.c | |
parent | abbf17abccbf832365d9acf1c280369ba7d5f8b2 (diff) | |
download | busybox-a0aae9f71442366ec429657c437fd7dd815978fd.zip busybox-a0aae9f71442366ec429657c437fd7dd815978fd.tar.gz |
tls: decode alerts and in particular, EOF alert.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index 5da6481..58ead4c 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -472,7 +472,7 @@ static void parse_url(const char *src_url, struct host_info *h) // FYI: // "Real" wget 'http://busybox.net?var=a/b' sends this request: - // 'GET /?var=a/b HTTP 1.0' + // 'GET /?var=a/b HTTP/1.0' // and saves 'index.html?var=a%2Fb' (we save 'b') // wget 'http://busybox.net?login=john@doe': // request: 'GET /?login=john@doe HTTP/1.0' |