mirror of
git://git.gnupg.org/gnupg.git
synced 2025-03-02 21:11:05 +01:00
gpg: Make decryption of -R work w/o --try-secret-key or --default-key.
* g10/getkey.c (enum_secret_keys): At state 3 enumerate the keys in all cases not just when --try-all-secrets is used. -- Regression-due-to: 82b90eee100cf1c9680517059b2d35e295dd992a Reported-by: Carola Grunwald Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
0a5a854510
commit
bdbd03608b
17
g10/getkey.c
17
g10/getkey.c
@ -3620,17 +3620,14 @@ enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *sk)
|
||||
c->state++;
|
||||
break;
|
||||
|
||||
case 3: /* Init search context to try all keys. */
|
||||
if (opt.try_all_secrets)
|
||||
case 3: /* Init search context to enum all secret keys. */
|
||||
err = getkey_bynames (&c->ctx, NULL, NULL, 1, &keyblock);
|
||||
if (err)
|
||||
{
|
||||
err = getkey_bynames (&c->ctx, NULL, NULL, 1, &keyblock);
|
||||
if (err)
|
||||
{
|
||||
release_kbnode (keyblock);
|
||||
keyblock = NULL;
|
||||
getkey_end (c->ctx);
|
||||
c->ctx = NULL;
|
||||
}
|
||||
release_kbnode (keyblock);
|
||||
keyblock = NULL;
|
||||
getkey_end (c->ctx);
|
||||
c->ctx = NULL;
|
||||
}
|
||||
c->state++;
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user