mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
gpg: Always initialize the trust db when generating keys.
* g10/gpg.c (main): Always initialize the trust db when generating keys. * g10/keygen.c (do_generate_keypair): We can now assume that there is a trust db. -- It is important to mark keys we create as ultimately trusted. Fixes-commit: 4735ab96aa5577d40ba7b3f72d863057198cc6a7 GnuPG-bug-id: 2695 Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
parent
4735ab96aa
commit
0c4d0620d3
@ -3949,6 +3949,11 @@ main (int argc, char **argv)
|
||||
case aListTrustDB:
|
||||
rc = setup_trustdb (argc? 1:0, trustdb_name);
|
||||
break;
|
||||
case aKeygen:
|
||||
case aFullKeygen:
|
||||
case aQuickKeygen:
|
||||
rc = setup_trustdb (1, trustdb_name);
|
||||
break;
|
||||
default:
|
||||
/* If we are using TM_ALWAYS, we do not need to create the
|
||||
trustdb. */
|
||||
|
@ -4791,7 +4791,6 @@ do_generate_keypair (ctrl_t ctrl, struct para_data_s *para,
|
||||
keyid_from_pk (pk, pk->main_keyid);
|
||||
register_trusted_keyid (pk->main_keyid);
|
||||
|
||||
if (have_trustdb ())
|
||||
update_ownertrust (pk, ((get_ownertrust (pk) & ~TRUST_MASK)
|
||||
| TRUST_ULTIMATE ));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user