diff options
author | Werner Koch <wk@gnupg.org> | 2018-05-29 13:01:12 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2018-05-29 13:01:12 +0200 |
commit | b2c05d691247a79fb46f75b653cbc4bf518c1c2a (patch) | |
tree | 6fcc63be06b9def155c5cf4eee9d4f860f3b541b /g10/revoke.c | |
parent | doc: Add a hint about gpgsm and DECRYPTION_INFO. (diff) | |
download | gnupg2-b2c05d691247a79fb46f75b653cbc4bf518c1c2a.tar.xz gnupg2-b2c05d691247a79fb46f75b653cbc4bf518c1c2a.zip |
gpg: Remove PGP6 compliance mode.
* g10/gpg.c: Make --pgp6 an alias for --pgp7.
* common/compliance.h (gnupg_compliance_mode): Remove CO_PGP6.
* g10/options.h (PGP6): Remove. Adjust all users.
Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to '')
-rw-r--r-- | g10/revoke.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/revoke.c b/g10/revoke.c index 3a089725c..b778684b0 100644 --- a/g10/revoke.c +++ b/g10/revoke.c @@ -480,7 +480,7 @@ create_revocation (ctrl_t ctrl, goto leave; } - if (keyblock && (PGP6 || PGP7 || PGP8)) + if (keyblock && (PGP7 || PGP8)) { /* Use a minimal pk for PGPx mode, since PGP can't import bare revocation certificates. */ |