Переглянути джерело

acme/autocert: change a var to a const

A var isn't needed and a const is what the upstream (Go 1.10+) version
it's copying is.

Change-Id: I335270be3b3d09ac3c22cf6fb889a74ac39b8f1d
Reviewed-on: https://go-review.googlesource.com/116379
Reviewed-by: Filippo Valsorda <filippo@golang.org>
Brad Fitzpatrick 7 роки тому
батько
коміт
b47b158736
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      acme/autocert/autocert.go

+ 1 - 1
acme/autocert/autocert.go

@@ -276,7 +276,7 @@ func supportsECDSA(hello *tls.ClientHelloInfo) bool {
 		ecdsaOK := false
 	schemeLoop:
 		for _, scheme := range hello.SignatureSchemes {
-			var tlsECDSAWithSHA1 tls.SignatureScheme = 0x0203 // constant added in Go 1.10
+			const tlsECDSAWithSHA1 tls.SignatureScheme = 0x0203 // constant added in Go 1.10
 			switch scheme {
 			case tlsECDSAWithSHA1, tls.ECDSAWithP256AndSHA256,
 				tls.ECDSAWithP384AndSHA384, tls.ECDSAWithP521AndSHA512: