From 437c97ab6a34ff1936001dd05209193b4466a81d Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Thu, 19 May 2016 09:35:20 +0200 Subject: [PATCH] gpg: Print "[ never ]" instead of err for validity. * g10/trust.c (uid_trust_string_fixed): Handle NEVER. Signed-off-by: Werner Koch --- g10/trust.c | 1 + 1 file changed, 1 insertion(+) diff --git a/g10/trust.c b/g10/trust.c index 82de7cbc2..b15fa041b 100644 --- a/g10/trust.c +++ b/g10/trust.c @@ -156,6 +156,7 @@ uid_trust_string_fixed (PKT_public_key *key, PKT_user_id *uid) case TRUST_UNKNOWN: return _("[ unknown]"); case TRUST_EXPIRED: return _("[ expired]"); case TRUST_UNDEFINED: return _("[ undef ]"); + case TRUST_NEVER: return _("[ never ]"); case TRUST_MARGINAL: return _("[marginal]"); case TRUST_FULLY: return _("[ full ]"); case TRUST_ULTIMATE: return _("[ultimate]");