1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-27 02:02:45 +02:00

* keyedit.c (keyedit_menu): Fix bug where a modified keyring loses its

modified status after a "clean" or "minimize" that doesn't need to do
anything.
This commit is contained in:
David Shaw 2008-09-25 04:00:36 +00:00
parent d6c59f314a
commit 85a3b11cb0
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-09-24 David Shaw <dshaw@jabberwocky.com>
* keyedit.c (keyedit_menu): Fix bug where a modified keyring loses
its modified status after a "clean" or "minimize" that doesn't
need to do anything.
2008-09-23 David Shaw <dshaw@jabberwocky.com>
* pkclist.c (select_algo_from_prefs): Redo function to rank prefs

View File

@ -2185,11 +2185,13 @@ keyedit_menu( const char *username, STRLIST locusr,
break;
case cmdCLEAN:
redisplay=modified=menu_clean(keyblock,0);
if(menu_clean(keyblock,0))
redisplay=modified=1;
break;
case cmdMINIMIZE:
redisplay=modified=menu_clean(keyblock,1);
if(menu_clean(keyblock,1))
redisplay=modified=1;
break;
case cmdQUIT: