From b928e7c22f38b4d69a56e5b7752c95c44dcd90af Mon Sep 17 00:00:00 2001 From: wsuff Date: Fri, 22 Nov 2019 08:30:57 -0500 Subject: [PATCH] Fix typo in invalid cert name error message (#565) BUG: validateCertificateList error message has valid spelled wrong. --- commands/getCerts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/getCerts.go b/commands/getCerts.go index b0ee327e4..9f706d06d 100644 --- a/commands/getCerts.go +++ b/commands/getCerts.go @@ -207,7 +207,7 @@ func validateCertificateList(certs []*acme.CertConfig, cfg *models.DNSConfig) er for _, cert := range certs { name := cert.CertName if !validCertNamesRegex.MatchString(name) { - return fmt.Errorf("'%s' is not a valud certificate name. Only alphanumerics, - and _ allowed", name) + return fmt.Errorf("'%s' is not a valid certificate name. Only alphanumerics, - and _ allowed", name) } sans := cert.Names if len(sans) > 100 {