Skip to content

Commit

Permalink
[FAB-3174] Fix compile error in tls.go
Browse files Browse the repository at this point in the history
See [FAB-3174]
I'm not sure how a compile error was merged.
Anyway, this one line change fixes it.

Change-Id: If36462969dc7341cc5470e156ead7e75c50b2b4e
Signed-off-by: Keith Smith <bksmith@us.ibm.com>
  • Loading branch information
Keith Smith committed Apr 15, 2017
1 parent 28197b0 commit de5f4bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tls/tls.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ type KeyCertFiles struct {
func GetClientTLSConfig(cfg *ClientTLSConfig) (*tls.Config, error) {
var certs []tls.Certificate

log.Debugf("CA Files: %s\n", cfg.CertFilesList)
log.Debugf("CA Files: %+v\n", cfg.CertFiles)
log.Debugf("Client Cert File: %s\n", cfg.Client.CertFile)
log.Debugf("Client Key File: %s\n", cfg.Client.KeyFile)

Expand Down

0 comments on commit de5f4bd

Please sign in to comment.