aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2009-12-08 04:43:15 +0000
committerMarcus Brinkmann <[email protected]>2009-12-08 04:43:15 +0000
commit146a4665bb4a2afcd24f444b4a8da055db715d78 (patch)
tree14e613cf978f26f03a07f7a1d3657da7d18aa513 /common
parent2009-12-08 Marcus Brinkmann <[email protected]> (diff)
downloadgnupg-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--common/ChangeLog2
-rw-r--r--common/asshelp.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/common/ChangeLog b/common/ChangeLog
index e3d8f8b5a..df058a8fe 100644
--- a/common/ChangeLog
+++ b/common/ChangeLog
@@ -1,5 +1,7 @@
2009-12-08 Marcus Brinkmann <[email protected]>
+ * asshelp.c (start_new_gpg_agent): Convert posix FD to assuan FD.
+
* asshelp.c (start_new_gpg_agent) [HAVE_W32_SYSTEM]: Add missing
argument in assuan_socket_connect invocation.
* iobuf.c (iobuf_open_fd_or_name): Fix type of FD in function
diff --git a/common/asshelp.c b/common/asshelp.c
index 09ef10ba8..b2d13f32b 100644
--- a/common/asshelp.c
+++ b/common/asshelp.c
@@ -268,8 +268,8 @@ start_new_gpg_agent (assuan_context_t *r_ctx,
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. */