* keylist.c (gpgme_op_keylist_start): Do not use a verbose listing.
authorWerner Koch <wk@gnupg.org>
Thu, 14 Feb 2002 12:43:28 +0000 (12:43 +0000)
committerWerner Koch <wk@gnupg.org>
Thu, 14 Feb 2002 12:43:28 +0000 (12:43 +0000)
gpgme/ChangeLog
gpgme/keylist.c

index ff076263ed14dfb88a14f79be46f108da01bc944..732ee3e39314bdd78285e4cf5d751267fe95561c 100644 (file)
@@ -1,3 +1,7 @@
+2002-02-14  Werner Koch  <wk@gnupg.org>
+
+       * keylist.c (gpgme_op_keylist_start): Do not use a verbose listing.
+
 2002-02-13  Werner Koch  <wk@gnupg.org>
 
        * vasprintf.c, fopencookie.c: Add replacement functions.
index 2ad296fc90b3efe0ba17ffe83ea7343b5f123834..91bdbc358129f4b897bfd9796c4e168de20bc7ac 100644 (file)
@@ -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);