forked from TrueCloudLab/certificates
Fix missing parenthesis.
This commit is contained in:
parent
a7e2ebb7d2
commit
e11160ebf1
1 changed files with 1 additions and 1 deletions
|
@ -63,6 +63,6 @@ func (c *CertificateRequest) GetLeafCertificate() *Certificate {
|
||||||
cert.ExtKeyUsage = ExtKeyUsage([]x509.ExtKeyUsage{
|
cert.ExtKeyUsage = ExtKeyUsage([]x509.ExtKeyUsage{
|
||||||
x509.ExtKeyUsageServerAuth,
|
x509.ExtKeyUsageServerAuth,
|
||||||
x509.ExtKeyUsageClientAuth,
|
x509.ExtKeyUsageClientAuth,
|
||||||
}
|
})
|
||||||
return cert
|
return cert
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue