mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
gpg: New option --known-notation.
* g10/gpg.c (oKnownNotation): New const.
(opts): Add option --known-notation.
(main): Set option.
* g10/parse-packet.c (known_notations_list): New local var.
(register_known_notation): New.
(can_handle_critical_notation): Rewrite to handle the new feature.
Also print the name of unknown notations in verbose mode.
--
GnuPG-bug-id: 4060
Signed-off-by: Werner Koch <wk@gnupg.org>
(cherry picked from commit 3da835713f
)
This commit is contained in:
parent
b02ad56a90
commit
a59a9962f4
4 changed files with 64 additions and 7 deletions
|
@ -109,6 +109,7 @@ enum cmd_and_opt_values
|
|||
oCertNotation,
|
||||
oShowNotation,
|
||||
oNoShowNotation,
|
||||
oKnownNotation,
|
||||
aEncrFiles,
|
||||
aEncrSym,
|
||||
aDecryptFiles,
|
||||
|
@ -673,6 +674,7 @@ static ARGPARSE_OPTS opts[] = {
|
|||
ARGPARSE_s_s (oSetNotation, "set-notation", "@"),
|
||||
ARGPARSE_s_s (oSigNotation, "sig-notation", "@"),
|
||||
ARGPARSE_s_s (oCertNotation, "cert-notation", "@"),
|
||||
ARGPARSE_s_s (oKnownNotation, "known-notation", "@"),
|
||||
|
||||
ARGPARSE_group (302, N_(
|
||||
"@\n(See the man page for a complete listing of all commands and options)\n"
|
||||
|
@ -3301,6 +3303,7 @@ main (int argc, char **argv)
|
|||
break;
|
||||
case oSigNotation: add_notation_data( pargs.r.ret_str, 0 ); break;
|
||||
case oCertNotation: add_notation_data( pargs.r.ret_str, 1 ); break;
|
||||
case oKnownNotation: register_known_notation (pargs.r.ret_str); break;
|
||||
case oShowNotation:
|
||||
deprecated_warning(configname,configlineno,"--show-notation",
|
||||
"--list-options ","show-notations");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue