1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* gpg.sgml: Document smartcard related options.

* g10.c, options.h: New option --no-interactive-selection.
* keyedit.c (keyedit_menu): Use it.
This commit is contained in:
Werner Koch 2005-06-20 17:03:27 +00:00
parent 059d159657
commit 2d2e2e74b8
13 changed files with 143 additions and 51 deletions

View file

@ -1741,8 +1741,14 @@ keyedit_menu( const char *username, STRLIST locusr,
&& !cpr_get_answer_is_yes("keyedit.sign_all.okay",
_("Really sign all user IDs?"
" (y/N) ")))
interactive=1;
{
if (opt.no_interactive_selection)
{
have_commands = 0;
break;
}
interactive=1;
}
/* What sort of signing are we doing? */
if(!parse_sign_type(answer,&localsig,&nonrevokesig,&trustsig))
{