go/access: fix %w in places %v should be used
This commit is contained in:
parent
dbf2d70e9c
commit
f05ce60ac3
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue