diff options
author | David Shaw <[email protected]> | 2003-01-11 03:57:00 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-01-11 03:57:00 +0000 |
commit | 8b3b70499a26300930b1414cb0445d24ba9530eb (patch) | |
tree | 3cebfbec28186f5c96c67ec43e640d76b3c87b3d /g10/pkclist.c | |
parent | Updated from latest NewPG project (diff) | |
download | gnupg-8b3b70499a26300930b1414cb0445d24ba9530eb.tar.gz gnupg-8b3b70499a26300930b1414cb0445d24ba9530eb.zip |
* armor.c (armor_filter): Comment about PGP's end of line tab problem.
* trustdb.h, trustdb.c (trust_letter): Make static. (get_ownertrust_info,
get_validity_info): Don't mask the trust level twice.
* trustdb.h, gpgv.c, trustdb.c (get_validity, get_validity_info),
keylist.c (list_keyblock_colon), keyedit.c (show_key_with_all_names_colon,
menu_revuid): Pass a user ID in rather than a namehash, so we only have to
do the hashing in one place.
* packet.h, pkclist.c (build_pk_list), free-packet.c
(release_public_key_parts): Remove unused namehash element for public
keys.
Diffstat (limited to 'g10/pkclist.c')
-rw-r--r-- | g10/pkclist.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c index f5c596027..e2c4209c0 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -1,5 +1,6 @@ /* pkclist.c - * Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. + * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 + * Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -1027,7 +1028,7 @@ build_pk_list( STRLIST rcpts, PK_LIST *ret_pk_list, unsigned use ) else if( !(rc=check_pubkey_algo2(pk->pubkey_algo, use )) ) { int trustlevel; - trustlevel = get_validity (pk, pk->namehash); + trustlevel = get_validity (pk, NULL); if( (trustlevel & TRUST_FLAG_DISABLED) ) { free_public_key(pk); pk = NULL; log_info(_("%s: skipped: public key is disabled\n"), |