outposts/ldap: only use common cert if cert is configured
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
4d527a0ac5
commit
2d03bd5c89
|
@ -24,7 +24,7 @@ func (ls *LDAPServer) getCertificates(info *tls.ClientHelloInfo) (*tls.Certifica
|
|||
}
|
||||
return provider.cert, nil
|
||||
}
|
||||
if provider.certUUID != ls.providers[0].certUUID {
|
||||
if provider.certUUID != ls.providers[0].certUUID && provider.cert != nil {
|
||||
allIdenticalCerts = false
|
||||
}
|
||||
}
|
||||
|
|
Reference in New Issue