1
0
Fork 0
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:
David Shaw 2007-10-17 16:37:09 +00:00
parent a5ca9e673f
commit 1ce132213e
5 changed files with 47 additions and 9 deletions

View file

@ -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: