From c7c21c46c8c36fe815501e3d03b891fbf4ed0b43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A4=D0=B5=D0=B4=D0=BE=D1=80=D1=87=D0=B5=D0=BD=D0=BA?= =?UTF-8?q?=D0=BE=20=D0=9E=D0=BB=D0=B5=D0=B3=20=D0=92=D0=B0=D1=81=D0=B8?= =?UTF-8?q?=D0=BB=D1=8C=D0=B5=D0=B2=D0=B8=D1=87?= Date: Thu, 2 Mar 2023 14:02:20 +0300 Subject: [PATCH] unqouted caCertFile string --- client-auth-tls-config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-auth-tls-config.go b/client-auth-tls-config.go index 5642524..23a76db 100644 --- a/client-auth-tls-config.go +++ b/client-auth-tls-config.go @@ -54,7 +54,7 @@ func (c *ClientAuthTLSConfig) dump(ctx *dumpctx.Ctx, w io.Writer) { ctx.Wrap(func() { fmt.Fprintf(w, "%senable: %t\n", ctx.Indent(), c.Enable) fmt.Fprintf(w, "%sauthType: %s\n", ctx.Indent(), c.AuthType.orDefault()) - fmt.Fprintf(w, "%scaCertFile: %q\n", ctx.Indent(), c.CACertFile) + fmt.Fprintf(w, "%scaCertFile: %s\n", ctx.Indent(), c.CACertFile) fmt.Fprintf(w, "%sclientCommonNames: %s\n", ctx.Indent(), c.ClientCommonNames) }) }