From 294f6957f040943f334887e5d2a97e0279538530 Mon Sep 17 00:00:00 2001 From: Guilherme Bernal Date: Tue, 1 May 2018 16:45:23 -0300 Subject: [PATCH] tls: Fix typo in error message, "incompabile" (#2147) --- caddytls/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddytls/config.go b/caddytls/config.go index 80f1633f..fd5b86b5 100644 --- a/caddytls/config.go +++ b/caddytls/config.go @@ -432,7 +432,7 @@ func MakeTLSConfig(configs []*Config) (*tls.Config, error) { // compatible), otherwise that is a configuration error if otherConfig, ok := configMap[cfg.Hostname]; ok { if err := assertConfigsCompatible(cfg, otherConfig); err != nil { - return nil, fmt.Errorf("incompabile TLS configurations for the same SNI "+ + return nil, fmt.Errorf("incompatible TLS configurations for the same SNI "+ "name (%s) on the same listener: %v", cfg.Hostname, err) }