Fix SSH certificate revocation

This commit is contained in:
Mariano Cano 2022-05-25 16:55:22 -07:00
parent abfbbc8d49
commit ce9a23a0f7
2 changed files with 2 additions and 1 deletions

View file

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Deprecated
### Removed
### Fixed
- Fixed SSH revocation.
### Security
## [0.19.0] - 2022-04-19

View file

@ -560,7 +560,7 @@ func (a *Authority) revokeSSH(crt *ssh.Certificate, rci *db.RevokedCertificateIn
}); ok {
return lca.RevokeSSH(crt, rci)
}
return a.db.Revoke(rci)
return a.db.RevokeSSH(rci)
}
// GetTLSCertificate creates a new leaf certificate to be used by the CA HTTPS server.