diff options
Diffstat (limited to '')
-rw-r--r-- | g10/options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/options.h b/g10/options.h index 19b855aa4..8ed2cdbf7 100644 --- a/g10/options.h +++ b/g10/options.h @@ -140,7 +140,7 @@ struct enum { CO_GNUPG, CO_RFC4880, CO_RFC2440, - CO_PGP6, CO_PGP7, CO_PGP8 + CO_PGP6, CO_PGP7, CO_PGP8, CO_DE_VS } compliance; enum { @@ -327,7 +327,7 @@ EXTERN_UNLESS_MAIN_MODULE int memory_stat_debug_mode; /* Compatibility flags. */ -#define GNUPG (opt.compliance==CO_GNUPG) +#define GNUPG (opt.compliance==CO_GNUPG || opt.compliance==CO_DE_VS) #define RFC2440 (opt.compliance==CO_RFC2440) #define RFC4880 (opt.compliance==CO_RFC4880) #define PGP6 (opt.compliance==CO_PGP6) |