Fix a few shadowing warnings

fixes #824
This commit is contained in:
Nicolas Werner 2021-12-11 06:19:54 +01:00
parent 75b112f0c8
commit 89e58f78f1
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
3 changed files with 11 additions and 11 deletions

View file

@ -1617,8 +1617,8 @@ download_cross_signing_keys()
[secrets::cross_signing_user_signing] =
user_signing_key->encrypted.begin()->second;
for (const auto &[key, secrets] : secrets)
unlock_secrets(key, secrets);
for (const auto &[key, secret_] : secrets)
unlock_secrets(key, secret_);
});
});
});