Commit 448edcca authored by Matthias Schneider's avatar Matthias Schneider Committed by Matt Holt

caddytls: removed useless code in selfsigned (#2494)

removed "names": is not used
parent 72d0debd
...@@ -62,13 +62,10 @@ func newSelfSignedCertificate(ssconfig selfSignedConfig) (tls.Certificate, error ...@@ -62,13 +62,10 @@ func newSelfSignedCertificate(ssconfig selfSignedConfig) (tls.Certificate, error
if len(ssconfig.SAN) == 0 { if len(ssconfig.SAN) == 0 {
ssconfig.SAN = []string{""} ssconfig.SAN = []string{""}
} }
var names []string
for _, san := range ssconfig.SAN { for _, san := range ssconfig.SAN {
if ip := net.ParseIP(san); ip != nil { if ip := net.ParseIP(san); ip != nil {
names = append(names, strings.ToLower(ip.String()))
cert.IPAddresses = append(cert.IPAddresses, ip) cert.IPAddresses = append(cert.IPAddresses, ip)
} else { } else {
names = append(names, strings.ToLower(san))
cert.DNSNames = append(cert.DNSNames, strings.ToLower(san)) cert.DNSNames = append(cert.DNSNames, strings.ToLower(san))
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment