diff options
Diffstat (limited to '')
-rw-r--r-- | gpgmeplug/gpgmeplug.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index 48ce8106..3774b514 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -2242,7 +2242,8 @@ startListCertificates( const char* pattern, int remote ) { GpgmeError err; struct CertIterator* it; - /*fprintf( stderr, "startListCertificates()" );*/ + const char* patterns[] = { pattern, NULL }; + fprintf( stderr, "startListCertificates( \"%s\", %d )", pattern, remote ); it = (struct CertIterator*)safe_malloc( sizeof( struct CertIterator ) ); @@ -2256,7 +2257,7 @@ startListCertificates( const char* pattern, int remote ) gpgme_set_protocol (it->ctx, GPGME_PROTOCOL_CMS); if( remote ) gpgme_set_keylist_mode ( it->ctx, GPGME_KEYLIST_MODE_EXTERN ); else gpgme_set_keylist_mode ( it->ctx, GPGME_KEYLIST_MODE_LOCAL ); - err = gpgme_op_keylist_start ( it->ctx, pattern, 0); + err = gpgme_op_keylist_ext_start ( it->ctx, patterns, 0, 0); if( err != GPGME_No_Error ) { endListCertificates( it ); return NULL; |