2009-11-10 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Tue, 10 Nov 2009 18:05:04 +0000 (18:05 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Tue, 10 Nov 2009 18:05:04 +0000 (18:05 +0000)
* op-support.c (_gpgme_op_reset): Instead of last change, only set
sub protocol if it is not the default.

src/ChangeLog
src/op-support.c

index 31cd1b0f9d2fddfe8fba800da9f6ad09d22e67b5..d7af1d6c0d4d59cb4b95f6d4dcc1665ad2e3efe0 100644 (file)
@@ -1,3 +1,8 @@
+2009-11-10  Marcus Brinkmann  <marcus@g10code.de>
+
+       * op-support.c (_gpgme_op_reset): Instead of last change, only set
+       sub protocol if it is not the default.
+
 2009-11-10  Werner Koch  <wk@g10code.com>
 
        * op-support.c (_gpgme_op_reset): Ignore GPG_ERR_NOT_IMPLEMENTED
index df54fc4d5757d4b3761fcdbc8222cde1e3af7c3d..b3cf55ecc31ebdd5cd5f961df7da1401e725820b 100644 (file)
@@ -130,11 +130,12 @@ _gpgme_op_reset (gpgme_ctx_t ctx, int type)
         }
     }
 
-  err = _gpgme_engine_set_protocol (ctx->engine, ctx->sub_protocol);
-  if (gpg_err_code (err) == GPG_ERR_NOT_IMPLEMENTED)
-    err = 0;
-  if (err)
-    return err;
+  if (ctx->sub_protocol != GPGME_PROTOCOL_DEFAULT)
+    {
+      err = _gpgme_engine_set_protocol (ctx->engine, ctx->sub_protocol);
+      if (err)
+       return err;
+    }
 
   if (type == 1 || (type == 2 && !ctx->io_cbs.add))
     {