Skip to content

Commit

Permalink
fix invalid ref to identity ca pool for alt server certs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewpmartinez committed Oct 23, 2023
1 parent 5f75e61 commit bfa05d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ func LoadIdentity(cfg Config) (Identity, error) {
return nil, errors.New("no corresponding key specified for identity server_cert")
}

chains, err := AssembleServerChains(svrCert, id.caPool.certs)
chains, err := AssembleServerChains(svrCert, nil)

if err != nil {
return nil, err
Expand Down

0 comments on commit bfa05d0

Please sign in to comment.