aboutsummaryrefslogtreecommitdiffstats
path: root/scd/app.c
diff options
context:
space:
mode:
Diffstat (limited to 'scd/app.c')
-rw-r--r--scd/app.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/scd/app.c b/scd/app.c
index 926ab7925..aac6e0e9b 100644
--- a/scd/app.c
+++ b/scd/app.c
@@ -2498,7 +2498,7 @@ report_change (int slot, int old_status, int cur_status)
gpg_error_t err;
const char *args[9];
char numbuf1[30], numbuf2[30], numbuf3[30];
- gnupg_spawn_actions_t act = NULL;
+ gpgrt_spawn_actions_t act = NULL;
sprintf (numbuf1, "%d", slot);
sprintf (numbuf2, "0x%04X", old_status);
@@ -2516,15 +2516,15 @@ report_change (int slot, int old_status, int cur_status)
args[8] = NULL;
fname = make_filename (gnupg_homedir (), "scd-event", NULL);
- err = gnupg_spawn_actions_new (&act);
+ err = gpgrt_spawn_actions_new (&act);
if (!err)
{
#ifndef HAVE_W32_SYSTEM
- gnupg_spawn_actions_set_atfork (act, setup_env, envstr);
+ gpgrt_spawn_actions_set_atfork (act, setup_env, envstr);
#endif
- err = gnupg_process_spawn (fname, args, GNUPG_PROCESS_DETACHED,
+ err = gpgrt_process_spawn (fname, args, GPGRT_PROCESS_DETACHED,
act, NULL);
- gnupg_spawn_actions_release (act);
+ gpgrt_spawn_actions_release (act);
}
if (err && gpg_err_code (err) != GPG_ERR_ENOENT)
log_error ("failed to run event handler '%s': %s\n",