Skip to content

Commit f055296

Browse files
committed
typo
1 parent f05208b commit f055296

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/provision/zdb.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ func decryptPassword(client zbus.Client, password string) (string, error) {
5757
if len(password) == 0 {
5858
return "", nil
5959
}
60-
identitry := stubs.NewIdentityManagerStub(client)
60+
identity := stubs.NewIdentityManagerStub(client)
6161

6262
bytes, err := hex.DecodeString(password)
6363
if err != nil {
6464
return "", err
6565
}
6666

67-
out, err := identitry.Decrypt(bytes)
67+
out, err := identity.Decrypt(bytes)
6868
return string(out), err
6969
}
7070

0 commit comments

Comments
 (0)