diff options
-rw-r--r-- | g10/ChangeLog | 6 | ||||
-rw-r--r-- | g10/keyedit.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index c2fe6d1ca..cd0da9464 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,9 @@ +2005-02-24 David Shaw <[email protected]> + + * keyedit.c (keyedit_menu): Only print the key signing hint when + signing from a place where it is useful (i.e. --edit-key and not + --sign-key). + 2005-02-16 Werner Koch <[email protected]> * card-util.c (fetch_url): Fetch the key from the default diff --git a/g10/keyedit.c b/g10/keyedit.c index 27cd94102..46759ef82 100644 --- a/g10/keyedit.c +++ b/g10/keyedit.c @@ -1637,7 +1637,8 @@ keyedit_menu( const char *username, STRLIST locusr, } } - if( count_uids(keyblock) > 1 && !count_selected_uids(keyblock) ) + if( count_uids(keyblock) > 1 && !count_selected_uids(keyblock) + && !have_commands ) { if( !cpr_get_answer_is_yes("keyedit.sign_all.okay", _("Really sign all user IDs?" |