From 0a005d29c22ea9ea00b9c65c0cdfc6a9d5673646 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Wed, 16 Mar 2022 21:42:17 -0400 Subject: Format: Add a line-length formatting. --- lbc/lbc.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'lbc/lbc.go') diff --git a/lbc/lbc.go b/lbc/lbc.go index 01b1a4d..d54ba3a 100644 --- a/lbc/lbc.go +++ b/lbc/lbc.go @@ -80,7 +80,10 @@ func (lbd *LoadBearingConnectionDownload) Start(ctx context.Context, debug bool) if debug { fmt.Printf("Using an SSL Key Logger for this load-bearing download.\n") } - transport.TLSClientConfig = &tls.Config{KeyLogWriter: lbd.KeyLogger, InsecureSkipVerify: true} + transport.TLSClientConfig = &tls.Config{ + KeyLogWriter: lbd.KeyLogger, + InsecureSkipVerify: true, + } } lbd.client = &http.Client{Transport: &transport} @@ -176,7 +179,10 @@ func (lbu *LoadBearingConnectionUpload) Start(ctx context.Context, debug bool) b if debug { fmt.Printf("Using an SSL Key Logger for this load-bearing upload.\n") } - transport.TLSClientConfig = &tls.Config{KeyLogWriter: lbu.KeyLogger, InsecureSkipVerify: true} + transport.TLSClientConfig = &tls.Config{ + KeyLogWriter: lbu.KeyLogger, + InsecureSkipVerify: true, + } } lbu.client = &http.Client{Transport: &transport} -- cgit v1.2.3