From: Denys Vlasenko Date: Mon, 24 Feb 2014 16:20:40 +0000 (+0100) Subject: wget: fix comment X-Git-Tag: 1_23_0~181 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a2796223cb1ffce77fdf75754b6052be32425692;p=oweals%2Fbusybox.git wget: fix comment Signed-off-by: Denys Vlasenko --- 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) /* Open socket to http(s) server */ if (target.protocol == P_HTTPS) { /* openssl-based helper - * Inconvenient API since we can't give it an open fd, + * Inconvenient API since we can't give it an open fd */ int fd = spawn_https_helper(server.host, server.port); sfp = fdopen(fd, "r+");