From 93c5256318baea4cb5bfaeb2e9d64877fe47cc5c Mon Sep 17 00:00:00 2001 From: elcore Date: Sat, 25 Aug 2018 00:43:56 +0200 Subject: [PATCH] caddytls: gofmt (Go 1.11) (#2241) --- caddytls/handshake.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/caddytls/handshake.go b/caddytls/handshake.go index 7e2ccb95e..3f1ca9baa 100644 --- a/caddytls/handshake.go +++ b/caddytls/handshake.go @@ -107,8 +107,8 @@ func (cfg *Config) GetCertificate(clientHello *tls.ClientHelloInfo) (*tls.Certif CipherSuites: clientHello.CipherSuites, ExtensionsUnknown: true, // no extension info... :( CompressionMethodsUnknown: true, // no compression methods... :( - Curves: clientHello.SupportedCurves, - Points: clientHello.SupportedPoints, + Curves: clientHello.SupportedCurves, + Points: clientHello.SupportedPoints, // We also have, but do not yet use: SignatureSchemes, ServerName, and SupportedProtos (ALPN) // because the standard lib parses some extensions, but our MITM detector generally doesn't. }