From 1de4a99ec33dacc712d687c757a9e15af4498ecd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20M=C3=BChl?= Date: Tue, 24 Sep 2019 06:01:44 +0200 Subject: [PATCH] Fix typo (#2763) --- caddytls/setup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddytls/setup.go b/caddytls/setup.go index a1620d579..67072e0f9 100644 --- a/caddytls/setup.go +++ b/caddytls/setup.go @@ -312,7 +312,7 @@ func setupTLS(c *caddy.Controller) error { resp, err := onDemandAskClient.Get(askURLParsed.String()) if err != nil { - return fmt.Errorf("error checking %v to deterine if certificate for hostname '%s' should be allowed: %v", + return fmt.Errorf("error checking %v to determine if certificate for hostname '%s' should be allowed: %v", askURL, name, err) } resp.Body.Close()