From 5ecda1bdd9b7feb16f21068a15d0fd92e1abf5c8 Mon Sep 17 00:00:00 2001 From: NFM-8 <> Date: Mon, 7 Oct 2019 14:56:51 +0300 Subject: [PATCH] Added missing comma --- tunneldns/https_upstream.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tunneldns/https_upstream.go b/tunneldns/https_upstream.go index 7d48c912..63a67ba1 100644 --- a/tunneldns/https_upstream.go +++ b/tunneldns/https_upstream.go @@ -34,7 +34,7 @@ func NewUpstreamHTTPS(endpoint string) (Upstream, error) { } // Update TLS and HTTP client configuration - tls := &tls.Config{ServerName: u.Hostname() MinVersion: tls.VersionTLS12} + tls := &tls.Config{ServerName: u.Hostname(), MinVersion: tls.VersionTLS12} transport := &http.Transport{ TLSClientConfig: tls, DisableCompression: true,