diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-11-14 11:35:36 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-11-14 11:35:36 +0100 |
commit | fe836d84554c007916adc1c2e5f5daae2f878947 (patch) | |
tree | 9a54f3be5bea14f69938cdc351a8a9b24ccbc4aa | |
parent | dbe95682b4bf1192d2860646617f157e6c44f2d1 (diff) | |
download | busybox-w32-fe836d84554c007916adc1c2e5f5daae2f878947.tar.gz busybox-w32-fe836d84554c007916adc1c2e5f5daae2f878947.tar.bz2 busybox-w32-fe836d84554c007916adc1c2e5f5daae2f878947.zip |
tls: code shrink
function old new delta
spawn_ssl_client 219 218 -1
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 a9a0f5f8c..65262e19d 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -717,8 +717,8 @@ static void spawn_ssl_client(const char *host, int network_fd, int flags) | |||
717 | char *servername, *p; | 717 | char *servername, *p; |
718 | 718 | ||
719 | if (!(option_mask32 & WGET_OPT_NO_CHECK_CERT)) { | 719 | if (!(option_mask32 & WGET_OPT_NO_CHECK_CERT)) { |
720 | bb_error_msg("note: TLS certificate validation not implemented"); | ||
721 | option_mask32 |= WGET_OPT_NO_CHECK_CERT; | 720 | option_mask32 |= WGET_OPT_NO_CHECK_CERT; |
721 | bb_error_msg("note: TLS certificate validation not implemented"); | ||
722 | } | 722 | } |
723 | 723 | ||
724 | servername = xstrdup(host); | 724 | servername = xstrdup(host); |