aboutsummaryrefslogtreecommitdiffstats
path: root/gpgme/wait.c
diff options
context:
space:
mode:
Diffstat (limited to 'gpgme/wait.c')
-rw-r--r--gpgme/wait.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gpgme/wait.c b/gpgme/wait.c
index a474126e..a830c2d1 100644
--- a/gpgme/wait.c
+++ b/gpgme/wait.c
@@ -34,6 +34,7 @@
#include "wait.h"
#include "sema.h"
#include "io.h"
+#include "engine.h"
struct wait_item_s;
struct proc_s;
@@ -382,8 +383,7 @@ gpgme_register_idle ( void (*fnc)(void) )
static void
run_idle ()
{
- _gpgme_gpg_housecleaning ();
- if (idle_function)
- idle_function ();
+ _gpgme_engine_housecleaning ();
+ if (idle_function)
+ idle_function ();
}
-