2009-11-02 Marcus Brinkmann <marcus@g10code.de>

* opassuan.c (gpgme_op_assuan_transact): Fix return value.
This commit is contained in:
Marcus Brinkmann 2009-11-02 17:06:14 +00:00
parent 9d3fdd8c96
commit 8c823dd784
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2009-11-02 Marcus Brinkmann <marcus@g10code.de>
* opassuan.c (gpgme_op_assuan_transact): Fix return value.
2009-10-30 Marcus Brinkmann <marcus@g10code.de> 2009-10-30 Marcus Brinkmann <marcus@g10code.de>
* Makefile.am (noinst_PROGRAMS): New target gpgme-tool. * Makefile.am (noinst_PROGRAMS): New target gpgme-tool.

View File

@ -197,9 +197,9 @@ gpgme_op_assuan_transact (gpgme_ctx_t ctx,
/* Users of the old-style session based interfaces need to look at /* Users of the old-style session based interfaces need to look at
the result structure. */ the result structure. */
gpgme_op_assuan_transact_ext (ctx, command, data_cb, data_cb_value, err = gpgme_op_assuan_transact_ext (ctx, command, data_cb, data_cb_value,
inq_cb, inq_cb_value, inq_cb, inq_cb_value,
status_cb, status_cb_value, NULL); status_cb, status_cb_value, NULL);
return err; return TRACE_ERR (err);
} }