1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-02-21 19:48:05 +01:00

* keyedit.c (keyedit_menu): Request a trustdb update when adding a new

user ID so the new ID gets validity set.  Reported by Owen Taylor.
This commit is contained in:
David Shaw 2004-03-27 21:57:04 +00:00
parent 5b9ec9dc31
commit 4c8b18363f
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2004-03-27 David Shaw <dshaw@jabberwocky.com>
* keyedit.c (keyedit_menu): Request a trustdb update when adding a
new user ID so the new ID gets validity set. Reported by Owen
Taylor.
2004-03-26 David Shaw <dshaw@jabberwocky.com>
* build-packet.c (calc_plaintext, do_plaintext): Do not create

View File

@ -1265,12 +1265,14 @@ keyedit_menu( const char *username, STRLIST locusr, STRLIST commands,
/* fall through */
case cmdADDUID:
if( menu_adduid( keyblock, sec_keyblock, photo ) ) {
if( menu_adduid( keyblock, sec_keyblock, photo ) )
{
update_trust = 1;
redisplay = 1;
sec_modified = modified = 1;
merge_keys_and_selfsig( sec_keyblock );
merge_keys_and_selfsig( keyblock );
}
}
break;
case cmdDELUID: {