diff options
Diffstat (limited to 'gpgme/keylist.c')
-rw-r--r-- | gpgme/keylist.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gpgme/keylist.c b/gpgme/keylist.c index 032bac6c..5fe37011 100644 --- a/gpgme/keylist.c +++ b/gpgme/keylist.c @@ -620,7 +620,9 @@ gpgme_op_keylist_ext_start (GpgmeCtx ctx, const char *pattern[], { GpgmeError err = 0; - err = _gpgme_op_reset (ctx, 0); + /* Keylist operations are always "synchronous" in the sense that we + don't add ourself to the global FD table. */ + err = _gpgme_op_reset (ctx, 1); if (err) goto leave; |