aboutsummaryrefslogtreecommitdiffstats
path: root/g10/trustdb.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-12-11 04:47:33 +0000
committerDavid Shaw <[email protected]>2004-12-11 04:47:33 +0000
commitbf5d013bc8de0ec5eaeb14d93da32f5167856f22 (patch)
tree342cc235dde9854398075b608a0618ffabd4d513 /g10/trustdb.c
parent* sv.po: Take the update done for 1.2.6. (diff)
downloadgnupg-bf5d013bc8de0ec5eaeb14d93da32f5167856f22.tar.gz
gnupg-bf5d013bc8de0ec5eaeb14d93da32f5167856f22.zip
* options.h, g10.c (main), textfilter.c (standard): Use --rfc2440 or
--openpgp directly to determine the end of line hashing rule. * trustdb.c (uid_trust_string_fixed): Show uids as expired if the key is expired.
Diffstat (limited to 'g10/trustdb.c')
-rw-r--r--g10/trustdb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c
index 62c49c46d..1222f49ca 100644
--- a/g10/trustdb.c
+++ b/g10/trustdb.c
@@ -509,6 +509,7 @@ uid_trust_string_fixed(PKT_public_key *key,PKT_user_id *uid)
switch(get_validity(key,uid)&TRUST_MASK)
{
case TRUST_UNKNOWN: return _("[ unknown]");
+ case TRUST_EXPIRED: return _("[ expired]");
case TRUST_UNDEFINED: return _("[ undef ]");
case TRUST_MARGINAL: return _("[marginal]");
case TRUST_FULLY: return _("[ full ]");