mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
gpg: New option --force-sign-key
* g10/gpg.c (oForceSignKey,opts): New option "--force-sign-key". (main): Set it. * g10/options.h (opt): New flag flags.force_sign_key. * g10/keyedit.c (sign_uids): Use new flag. -- GnuPG-bug-id: 4584
This commit is contained in:
parent
b9c560e3a4
commit
fe02ef0450
4 changed files with 32 additions and 14 deletions
|
@ -435,6 +435,7 @@ enum cmd_and_opt_values
|
|||
oIncludeKeyBlock,
|
||||
oNoIncludeKeyBlock,
|
||||
oChUid,
|
||||
oForceSignKey,
|
||||
|
||||
oNoop
|
||||
};
|
||||
|
@ -886,7 +887,7 @@ static gpgrt_opt_t opts[] = {
|
|||
ARGPARSE_s_s (oPassphraseFile, "passphrase-file", "@"),
|
||||
ARGPARSE_s_i (oPassphraseRepeat,"passphrase-repeat", "@"),
|
||||
ARGPARSE_s_s (oPinentryMode, "pinentry-mode", "@"),
|
||||
|
||||
ARGPARSE_s_n (oForceSignKey, "force-sign-key", "@"),
|
||||
|
||||
ARGPARSE_header (NULL, N_("Other options")),
|
||||
|
||||
|
@ -2778,6 +2779,9 @@ main (int argc, char **argv)
|
|||
|
||||
case oAnswerYes: opt.answer_yes = 1; break;
|
||||
case oAnswerNo: opt.answer_no = 1; break;
|
||||
|
||||
case oForceSignKey: opt.flags.force_sign_key = 1; break;
|
||||
|
||||
case oKeyring: append_to_strlist( &nrings, pargs.r.ret_str); break;
|
||||
case oPrimaryKeyring:
|
||||
sl = append_to_strlist (&nrings, pargs.r.ret_str);
|
||||
|
|
|
@ -751,10 +751,11 @@ sign_uids (ctrl_t ctrl, estream_t fp,
|
|||
_("\"%s\" was already signed by key %s\n"),
|
||||
user, keystr_from_pk (pk));
|
||||
|
||||
if (opt.expert && !quick
|
||||
&& cpr_get_answer_is_yes ("sign_uid.dupe_okay",
|
||||
_("Do you want to sign it "
|
||||
"again anyway? (y/N) ")))
|
||||
if (opt.flags.force_sign_key
|
||||
|| (opt.expert && !quick
|
||||
&& cpr_get_answer_is_yes ("sign_uid.dupe_okay",
|
||||
_("Do you want to sign it "
|
||||
"again anyway? (y/N) "))))
|
||||
{
|
||||
/* Don't delete the old sig here since this is
|
||||
an --expert thing. */
|
||||
|
|
|
@ -252,6 +252,8 @@ struct
|
|||
* another card. */
|
||||
unsigned int use_only_openpgp_card:1;
|
||||
unsigned int full_timestrings:1;
|
||||
/* Force signing keys even if a key signature already exists. */
|
||||
unsigned int force_sign_key:1;
|
||||
} flags;
|
||||
|
||||
/* Linked list of ways to find a key if the key isn't on the local
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue