aboutsummaryrefslogtreecommitdiffstats
path: root/g10/trustdb.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2003-01-07 00:06:02 +0000
committerDavid Shaw <[email protected]>2003-01-07 00:06:02 +0000
commit7b278538c7c32fb4e0563bd2417ad0de5256f1e7 (patch)
treeb1e34ff6bc1f1bdbea7b2c9446ccde531c862f70 /g10/trustdb.c
parent* gpgkeys_hkp.c (get_key): Use options=mr when getting a key so keyserver (diff)
downloadgnupg-7b278538c7c32fb4e0563bd2417ad0de5256f1e7.tar.gz
gnupg-7b278538c7c32fb4e0563bd2417ad0de5256f1e7.zip
* trustdb.c (get_validity_info): 'd' for disabled is not a validity value
any more.
Diffstat (limited to '')
-rw-r--r--g10/trustdb.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c
index 10e2df6dc..ed4a9379a 100644
--- a/g10/trustdb.c
+++ b/g10/trustdb.c
@@ -1048,8 +1048,6 @@ get_validity_info (PKT_public_key *pk, const byte *namehash)
int c;
trustlevel = get_validity (pk, namehash);
- if( trustlevel & TRUST_FLAG_DISABLED )
- return 'd';
if( trustlevel & TRUST_FLAG_REVOKED )
return 'r';
c = trust_letter ( (trustlevel & TRUST_MASK) );