+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>
* Makefile.am (noinst_PROGRAMS): New target gpgme-tool.
/* Users of the old-style session based interfaces need to look at
the result structure. */
- gpgme_op_assuan_transact_ext (ctx, command, data_cb, data_cb_value,
- inq_cb, inq_cb_value,
- status_cb, status_cb_value, NULL);
+ err = gpgme_op_assuan_transact_ext (ctx, command, data_cb, data_cb_value,
+ inq_cb, inq_cb_value,
+ status_cb, status_cb_value, NULL);
- return err;
+ return TRACE_ERR (err);
}