diff options
author | Werner Koch <[email protected]> | 2002-02-14 12:43:28 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-02-14 12:43:28 +0000 |
commit | 9eb5c192b3a13a7b32fe95c8d5f7aaead78274f6 (patch) | |
tree | 742fcd1270984ba211498d323580ade52d1c6cae | |
parent | Removed temporary passphrase callback (diff) | |
download | gpgme-9eb5c192b3a13a7b32fe95c8d5f7aaead78274f6.tar.gz gpgme-9eb5c192b3a13a7b32fe95c8d5f7aaead78274f6.zip |
* keylist.c (gpgme_op_keylist_start): Do not use a verbose listing.
Diffstat (limited to '')
-rw-r--r-- | gpgme/ChangeLog | 4 | ||||
-rw-r--r-- | gpgme/keylist.c | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index ff076263..732ee3e3 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,7 @@ +2002-02-14 Werner Koch <[email protected]> + + * keylist.c (gpgme_op_keylist_start): Do not use a verbose listing. + 2002-02-13 Werner Koch <[email protected]> * vasprintf.c, fopencookie.c: Add replacement functions. diff --git a/gpgme/keylist.c b/gpgme/keylist.c index 2ad296fc..91bdbc35 100644 --- a/gpgme/keylist.c +++ b/gpgme/keylist.c @@ -483,7 +483,11 @@ gpgme_op_keylist_start (GpgmeCtx ctx, const char *pattern, int secret_only) keylist_colon_handler, ctx); if (err) goto leave; - _gpgme_engine_set_verbosity (ctx->engine, ctx->verbosity); + + /* We don't want to use the verbose mode as this will also print + the key signatures which is in most cases not needed and furthermore we + just ignore those lines - This should speed up things */ + _gpgme_engine_set_verbosity (ctx->engine, 0); err = _gpgme_engine_op_keylist (ctx->engine, pattern, secret_only, ctx->keylist_mode); |