go/access: fix %w in places %v should be used

This commit is contained in:
Luke Granger-Brown 2025-03-05 00:51:29 +00:00
parent dbf2d70e9c
commit f05ce60ac3

View file

@ -252,7 +252,7 @@ func main() {
signedCertStr := sec.Data["signed_key"].(string)
signedCertPK, _, _, _, err := ssh.ParseAuthorizedKey([]byte(signedCertStr))
if err != nil {
log.Fatalf("parsing SSH certificate: %w", err)
log.Fatalf("parsing SSH certificate: %v", err)
}
signedCert := signedCertPK.(*ssh.Certificate)
expiresAt := time.Unix(int64(signedCert.ValidBefore), 0)
@ -266,6 +266,6 @@ func main() {
LifetimeSecs: uint32(certLifetime.Seconds()),
ConfirmBeforeUse: *requirePresence,
}); err != nil {
log.Fatalf("adding key to agent: %w", err)
log.Fatalf("adding key to agent: %v", err)
}
}