aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2003-02-06 11:45:05 +0000
committerMarcus Brinkmann <[email protected]>2003-02-06 11:45:05 +0000
commit654ab241642fce3a3f2cbd39188cd61b58bcbe74 (patch)
treedce7477d11d742c6636ddd0fe648c2445e6769bb
parent2003-02-05 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-654ab241642fce3a3f2cbd39188cd61b58bcbe74.tar.gz
gpgme-654ab241642fce3a3f2cbd39188cd61b58bcbe74.zip
2003-01-30 Marcus Brinkmann <[email protected]>
* edit.c (_gpgme_edit_status_handler): Call the progress status handler.
-rw-r--r--gpgme/ChangeLog5
-rw-r--r--gpgme/edit.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog
index be470eb9..53bcc45d 100644
--- a/gpgme/ChangeLog
+++ b/gpgme/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-30 Marcus Brinkmann <[email protected]>
+
+ * edit.c (_gpgme_edit_status_handler): Call the progress status
+ handler.
+
2003-02-05 Marcus Brinkmann <[email protected]>
* wait-user.c (_gpgme_wait_user_remove_io_cb): Move check for no
diff --git a/gpgme/edit.c b/gpgme/edit.c
index b6245167..5fbb4b40 100644
--- a/gpgme/edit.c
+++ b/gpgme/edit.c
@@ -43,6 +43,10 @@ edit_status_handler (GpgmeCtx ctx, GpgmeStatusCode status, char *args)
if (err)
return err;
+ GpgmeError err = _gpgme_progress_status_handler (ctx, status, args);
+ if (err)
+ return err;
+
err = _gpgme_op_data_lookup (ctx, OPDATA_EDIT, (void **) &result,
-1, NULL);
if (err)