From 2e13cda6dd8bf64e70da3f44b31d4291260c43d4 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sun, 5 Jun 2022 03:48:12 -0600 Subject: [PATCH] f: typo fix --- internal/mgmt/authstore/postgresql.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/mgmt/authstore/postgresql.go b/internal/mgmt/authstore/postgresql.go index 6e67d8b..8da530a 100644 --- a/internal/mgmt/authstore/postgresql.go +++ b/internal/mgmt/authstore/postgresql.go @@ -223,7 +223,6 @@ func (s *PGStore) Get(id string) (*Authorization, error) { ` // if the id is actually the secret, we want the public form // (we do this to protect against a timing attack) - kid := id pubby := ToPublicKeyString(id) if len(id) > 24 { id = id[:24]