diff options
author | David Shaw <[email protected]> | 2005-07-22 12:52:34 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2005-07-22 12:52:34 +0000 |
commit | 04b9cec18f579f448c6680f0b794a1fa68ae5bb1 (patch) | |
tree | 013f96377ac525a76e743a36502597d2a12fb74a /g10/keyedit.c | |
parent | * gpgkeys_curl.c (get_key, main): Don't try and be smart about what (diff) | |
download | gnupg-04b9cec18f579f448c6680f0b794a1fa68ae5bb1.tar.gz gnupg-04b9cec18f579f448c6680f0b794a1fa68ae5bb1.zip |
* options.h, g10.c (main), keyedit.c (keyedit_menu): Use --interactive
to enable the uid walking when signing a key with no uids specified to
sign.
* keylist.c (list_keyblock_print): Fix silly typo. Noted by Greg
Sabino Mullane.
Diffstat (limited to '')
-rw-r--r-- | g10/keyedit.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/g10/keyedit.c b/g10/keyedit.c index 6b19de4ea..c0587473c 100644 --- a/g10/keyedit.c +++ b/g10/keyedit.c @@ -1742,12 +1742,15 @@ keyedit_menu( const char *username, STRLIST locusr, _("Really sign all user IDs?" " (y/N) "))) { - if (opt.no_interactive_selection) + if(opt.interactive) + interactive=1; + else { + tty_printf(_("Hint: Select the user IDs to sign\n")); have_commands = 0; break; } - interactive=1; + } /* What sort of signing are we doing? */ if(!parse_sign_type(answer,&localsig,&nonrevokesig,&trustsig)) |