mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
* options.h, gpg.c (main), misc.c (compliance_option_string): Add
--rfc4880, and make --openpgp an alias to it. --rfc2440 now stands alone. For now, use the old 2440 defaults for 4880. * keyedit.c (keyedit_menu): Use compliance_option_string() instead of printing the compliance modes here.
This commit is contained in:
parent
a5ca9e673f
commit
1ce132213e
5 changed files with 47 additions and 9 deletions
|
@ -801,8 +801,12 @@ compliance_option_string(void)
|
|||
{
|
||||
switch(opt.compliance)
|
||||
{
|
||||
case CO_RFC2440:
|
||||
case CO_RFC4880:
|
||||
return "--openpgp";
|
||||
case CO_RFC2440:
|
||||
return "--rfc2440";
|
||||
case CO_RFC1991:
|
||||
return "--rfc1991";
|
||||
case CO_PGP2:
|
||||
return "--pgp2";
|
||||
case CO_PGP6:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue