2006-06-22 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Thu, 22 Jun 2006 17:20:47 +0000 (17:20 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Thu, 22 Jun 2006 17:20:47 +0000 (17:20 +0000)
* keylist.c (gpgme_get_key): Also clone the engine info.

gpgme/ChangeLog
gpgme/keylist.c

index b446e6a56a97e15abdf0e14d473b71f715e3592e..d1342550574226254efda039a73bf781735fa14a 100644 (file)
@@ -1,3 +1,7 @@
+2006-06-22  Marcus Brinkmann  <marcus@g10code.de>
+
+       * keylist.c (gpgme_get_key): Also clone the engine info.
+
 2006-03-06  Marcus Brinkmann  <marcus@g10code.de>
 
        * gpgme-config.in (cflags_pth): Revert accidential removal of
index 2812975325bc39baf513e85a402ba60158ae44ac..b61901620e82c7239702438c84920e3e45dda8a5 100644 (file)
@@ -939,8 +939,22 @@ gpgme_get_key (gpgme_ctx_t ctx, const char *fpr, gpgme_key_t *r_key,
   err = gpgme_new (&listctx);
   if (err)
     return err;
-  gpgme_set_protocol (listctx, gpgme_get_protocol (ctx));
-  gpgme_set_keylist_mode (listctx, ctx->keylist_mode);
+  {
+    gpgme_protocol_t proto;
+    gpgme_engine_info_t info;
+
+    /* Clone the relevant state.  */
+    proto = gpgme_get_protocol (ctx);
+    gpgme_set_protocol (listctx, proto);
+    gpgme_set_keylist_mode (listctx, gpgme_get_keylist_mode (ctx));
+    info = gpgme_ctx_get_engine_info (ctx);
+    while (info && info->protocol != proto)
+      info = info->next;
+    if (info)
+      gpgme_ctx_set_engine_info (listctx, proto,
+                                info->file_name, info->home_dir);
+  }
+
   err = gpgme_op_keylist_start (listctx, fpr, secret);
   if (!err)
     err = gpgme_op_keylist_next (listctx, r_key);