diff options
Diffstat (limited to '')
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/opassuan.c | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 40159107..0f50c5c9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-11-02 Marcus Brinkmann <[email protected]> + + * opassuan.c (gpgme_op_assuan_transact): Fix return value. + 2009-10-30 Marcus Brinkmann <[email protected]> * Makefile.am (noinst_PROGRAMS): New target gpgme-tool. diff --git a/src/opassuan.c b/src/opassuan.c index d17bfeab..c48c1a47 100644 --- a/src/opassuan.c +++ b/src/opassuan.c @@ -197,9 +197,9 @@ gpgme_op_assuan_transact (gpgme_ctx_t ctx, /* 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); } |