aboutsummaryrefslogtreecommitdiffstats
path: root/scd
diff options
context:
space:
mode:
Diffstat (limited to 'scd')
-rw-r--r--scd/app.c2
-rw-r--r--scd/scdaemon.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/scd/app.c b/scd/app.c
index 625f9b914..c2ff50285 100644
--- a/scd/app.c
+++ b/scd/app.c
@@ -2649,7 +2649,7 @@ initialize_module_command (void)
#ifdef HAVE_W32_SYSTEM
scd_init_event (&card_list_lock.the_event, card_list_lock.events);
#else
- ret = gnupg_create_pipe (card_list_lock.notify_pipe);
+ ret = gnupg_create_pipe (card_list_lock.notify_pipe, 0);
if (ret)
{
err = gpg_error_from_syserror ();
diff --git a/scd/scdaemon.c b/scd/scdaemon.c
index a52dc5a2f..5e08a5abd 100644
--- a/scd/scdaemon.c
+++ b/scd/scdaemon.c
@@ -1312,7 +1312,7 @@ handle_connections (gnupg_fd_t listen_fd)
#ifdef HAVE_PSELECT_NO_EINTR
int pipe_fd[2];
- ret = gnupg_create_pipe (pipe_fd);
+ ret = gnupg_create_pipe (pipe_fd, 0);
if (ret)
{
log_error ("pipe creation failed: %s\n", gpg_strerror (ret));