1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-08 12:44:23 +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-28 05:33:00 +00:00
parent 80c8b0c3a4
commit cabb6cd30e
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-25 David Shaw <dshaw@jabberwocky.com>
* options.h, g10.c (main), compress-bz2.c (init_uncompress):

View File

@ -1397,12 +1397,14 @@ keyedit_menu( const char *username, STRLIST locusr,
/* 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: {