diff options
Diffstat (limited to '')
-rw-r--r-- | g10/misc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/g10/misc.c b/g10/misc.c index 4f9ece349..4b9ad990b 100644 --- a/g10/misc.c +++ b/g10/misc.c @@ -1252,6 +1252,7 @@ compliance_option_string(void) case CO_PGP6: return "--pgp6"; case CO_PGP7: return "--pgp7"; case CO_PGP8: return "--pgp8"; + case CO_DE_VS: return "--compliance=de-vs"; } return ver; @@ -1287,6 +1288,10 @@ compliance_failure(void) case CO_PGP8: ver="PGP 8.x"; break; + + case CO_DE_VS: + ver="DE-VS applications"; + break; } log_info(_("this message may not be usable by %s\n"),ver); |