From 7cebb559b37f3ea7a4c167fa8d6126b9144d7334 Mon Sep 17 00:00:00 2001 From: Victor Garcia Date: Tue, 31 May 2016 14:17:17 +0200 Subject: [PATCH] Minor typo in comment, SSLv3 instead of SSLv4 --- pkg/client/transport/transport.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/client/transport/transport.go b/pkg/client/transport/transport.go index 6b41c52e571..2d20e1b878a 100644 --- a/pkg/client/transport/transport.go +++ b/pkg/client/transport/transport.go @@ -63,7 +63,7 @@ func TLSConfigFor(c *Config) (*tls.Config, error) { } tlsConfig := &tls.Config{ - // Can't use SSLv4 because of POODLE and BEAST + // Can't use SSLv3 because of POODLE and BEAST // Can't use TLSv1.0 because of POODLE and BEAST using CBC cipher // Can't use TLSv1.1 because of RC4 cipher usage MinVersion: tls.VersionTLS12,