diff options
Diffstat (limited to 'scd')
-rw-r--r-- | scd/app.c | 2 | ||||
-rw-r--r-- | scd/scdaemon.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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)); |