aboutsummaryrefslogtreecommitdiffstats
path: root/g10/pkclist.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1998-11-08 17:23:14 +0000
committerWerner Koch <[email protected]>1998-11-08 17:23:14 +0000
commit35c10545075da2353511ed83f7b5bb664f055df4 (patch)
treec92b3dc1ff2306194942b0d28e16e9ea8d28846e /g10/pkclist.c
parentoverhauled the trustdb stuff (diff)
downloadgnupg-0-4-3.tar.gz
gnupg-0-4-3.zip
ready to release 0.4.3V0-4-3
Diffstat (limited to 'g10/pkclist.c')
-rw-r--r--g10/pkclist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c
index 0cccd2870..bef871c5f 100644
--- a/g10/pkclist.c
+++ b/g10/pkclist.c
@@ -432,7 +432,7 @@ build_pk_list( STRLIST remusr, PK_LIST *ret_pk_list, unsigned usage )
free_public_key( pk );
pk = m_alloc_clear( sizeof *pk );
pk->pubkey_usage = usage;
- rc = get_pubkey_byname( pk, answer );
+ rc = get_pubkey_byname( NULL, pk, answer, NULL );
if( rc )
tty_printf(_("No such user ID.\n"));
else if( !(rc=check_pubkey_algo2(pk->pubkey_algo, usage)) ) {
@@ -466,7 +466,7 @@ build_pk_list( STRLIST remusr, PK_LIST *ret_pk_list, unsigned usage )
pk = m_alloc_clear( sizeof *pk );
pk->pubkey_usage = usage;
- if( (rc = get_pubkey_byname( pk, remusr->d )) ) {
+ if( (rc = get_pubkey_byname( NULL, pk, remusr->d, NULL )) ) {
free_public_key( pk ); pk = NULL;
log_error(_("%s: skipped: %s\n"), remusr->d, g10_errstr(rc) );
}