diff options
author | Marcus Brinkmann <[email protected]> | 2009-12-08 04:43:15 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2009-12-08 04:43:15 +0000 |
commit | 146a4665bb4a2afcd24f444b4a8da055db715d78 (patch) | |
tree | 14e613cf978f26f03a07f7a1d3657da7d18aa513 /sm/call-dirmngr.c | |
parent | 2009-12-08 Marcus Brinkmann <[email protected]> (diff) | |
download | gnupg-146a4665bb4a2afcd24f444b4a8da055db715d78.tar.gz gnupg-146a4665bb4a2afcd24f444b4a8da055db715d78.zip |
common/
2009-12-08 Marcus Brinkmann <[email protected]>
* asshelp.c (start_new_gpg_agent): Convert posix FD to assuan FD.
agent/
2009-12-08 Marcus Brinkmann <[email protected]>
* call-pinentry.c (start_pinentry): Convert posix fd to assuan fd.
* call-scd.c (start_scd): Likewise.
sm/
2009-12-08 Marcus Brinkmann <[email protected]>
* call-dirmngr.c (start_dirmngr_ext): Convert posix fd to assuan fd.
tools/
2009-12-08 Marcus Brinkmann <[email protected]>
* gpg-connect-agent.c (main): Convert posix fd to assuan fd.
Diffstat (limited to '')
-rw-r--r-- | sm/call-dirmngr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sm/call-dirmngr.c b/sm/call-dirmngr.c index b6f37bae2..ba6cf6fba 100644 --- a/sm/call-dirmngr.c +++ b/sm/call-dirmngr.c @@ -258,8 +258,8 @@ start_dirmngr_ext (ctrl_t ctrl, assuan_context_t *ctx_r) i=0; if (log_get_fd () != -1) - no_close_list[i++] = log_get_fd (); - no_close_list[i++] = fileno (stderr); + no_close_list[i++] = assuan_fd_from_posix_fd (log_get_fd ()); + no_close_list[i++] = assuan_fd_from_posix_fd (fileno (stderr)); no_close_list[i] = -1; /* connect to the agent and perform initial handshaking */ |