diff options
author | David Shaw <[email protected]> | 2005-04-24 18:35:30 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2005-04-24 18:35:30 +0000 |
commit | f02fe1dafb3375c7fb1cd95cc748e4b127c25e0d (patch) | |
tree | 53f1106ab3d9bc4aebaac20bc97d1733a32a1a6b /g10/trustdb.h | |
parent | * libcurl.m4: Add a check for curl_free() since older versions of (diff) | |
download | gnupg-f02fe1dafb3375c7fb1cd95cc748e4b127c25e0d.tar.gz gnupg-f02fe1dafb3375c7fb1cd95cc748e4b127c25e0d.zip |
* trustdb.h, trustdb.c (mark_usable_uid_certs): Add flags for the
no-pubkey and chosen revocation cases. (clean_uid): New function to
clean a user ID of unusable (as defined by mark_usable_uid_certs)
certs.
* keyedit.c (keyedit_menu, menu_clean_uids): Call it here for new
"clean" command that removes unusable sigs from a key.
Diffstat (limited to 'g10/trustdb.h')
-rw-r--r-- | g10/trustdb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g10/trustdb.h b/g10/trustdb.h index 710c13b22..a9f98c712 100644 --- a/g10/trustdb.h +++ b/g10/trustdb.h @@ -81,6 +81,8 @@ const char *get_ownertrust_string (PKT_public_key *pk); void update_ownertrust (PKT_public_key *pk, unsigned int new_trust ); int clear_ownertrusts (PKT_public_key *pk); +int clean_uid(KBNODE keyblock,KBNODE uidnode,int noisy); + /*-- tdbdump.c --*/ void list_trustdb(const char *username); void export_ownertrust(void); |