diff options
author | David Shaw <[email protected]> | 2005-11-18 04:25:07 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2005-11-18 04:25:07 +0000 |
commit | eac8dbc9b7428d93413ac08aabccdc7b20fb1e2f (patch) | |
tree | 8c1a355aac69f0758ae7ce7fbb2c137ed98cd9fe /g10/trustdb.h | |
parent | * armor.c (parse_header_line): A fussy bit of 2440: header lines are (diff) | |
download | gnupg-eac8dbc9b7428d93413ac08aabccdc7b20fb1e2f.tar.gz gnupg-eac8dbc9b7428d93413ac08aabccdc7b20fb1e2f.zip |
* keyedit.c (keyedit_menu, menu_clean): Simplify clean options to just
"clean", and add "minimize".
* import.c (parse_import_options): Make help text match the export
versions of the options.
* options.h, export.c (parse_export_options, do_export_stream): Reduce
clean options to two: clean and minimize.
* trustdb.h, trustdb.c (clean_one_uid): New function that joins uid
and sig cleaning into one for a simple API outside trustdb.
Diffstat (limited to 'g10/trustdb.h')
-rw-r--r-- | g10/trustdb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/trustdb.h b/g10/trustdb.h index 8e6a842e7..2d0581f9b 100644 --- a/g10/trustdb.h +++ b/g10/trustdb.h @@ -82,8 +82,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_sigs_from_uid(KBNODE keyblock,KBNODE uidnode,int noisy,int self_only); -int clean_uids_from_key(KBNODE keyblock,int noisy); +void clean_one_uid(KBNODE keyblock,KBNODE uidnode,int noisy,int self_only, + int *uids_cleaned,int *sigs_cleaned); void clean_key(KBNODE keyblock,int noisy,int self_only, int *uids_cleaned,int *sigs_cleaned); |