diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2014-02-24 17:20:40 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2014-02-24 17:20:40 +0100 |
commit | a2796223cb1ffce77fdf75754b6052be32425692 (patch) | |
tree | f9b3c38c0a8eca8c69cb0229a1fcd8afa320bf1d | |
parent | 53315570bb77534d828b3cf1f06b2ca286da4962 (diff) | |
download | busybox-w32-a2796223cb1ffce77fdf75754b6052be32425692.tar.gz busybox-w32-a2796223cb1ffce77fdf75754b6052be32425692.tar.bz2 busybox-w32-a2796223cb1ffce77fdf75754b6052be32425692.zip |
wget: fix comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 3d9a1b333..62a5fcc02 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -815,7 +815,7 @@ static void download_one_url(const char *url) | |||
815 | /* Open socket to http(s) server */ | 815 | /* Open socket to http(s) server */ |
816 | if (target.protocol == P_HTTPS) { | 816 | if (target.protocol == P_HTTPS) { |
817 | /* openssl-based helper | 817 | /* openssl-based helper |
818 | * Inconvenient API since we can't give it an open fd, | 818 | * Inconvenient API since we can't give it an open fd |
819 | */ | 819 | */ |
820 | int fd = spawn_https_helper(server.host, server.port); | 820 | int fd = spawn_https_helper(server.host, server.port); |
821 | sfp = fdopen(fd, "r+"); | 821 | sfp = fdopen(fd, "r+"); |