[svn] dirmngr - r273 - trunk/src

svn author marcus cvs at cvs.gnupg.org
Wed Oct 24 23:01:27 CEST 2007


Author: marcus
Date: 2007-10-24 23:01:17 +0200 (Wed, 24 Oct 2007)
New Revision: 273

Modified:
   trunk/src/ChangeLog
   trunk/src/exechelp.c
Log:
2007-10-24  Marcus Brinkmann  <marcus at g10code.de>

	* exechelp.c (dirmngr_spawn_process): Fix child handles.


Modified: trunk/src/ChangeLog
===================================================================
--- trunk/src/ChangeLog	2007-10-16 15:16:30 UTC (rev 272)
+++ trunk/src/ChangeLog	2007-10-24 21:01:17 UTC (rev 273)
@@ -1,3 +1,7 @@
+2007-10-24  Marcus Brinkmann  <marcus at g10code.de>
+
+	* exechelp.c (dirmngr_spawn_process): Fix child handles.
+
 2007-10-05  Marcus Brinkmann  <marcus at g10code.de>
 
 	* dirmngr.h: Include assuan.h.

Modified: trunk/src/exechelp.c
===================================================================
--- trunk/src/exechelp.c	2007-10-16 15:16:30 UTC (rev 272)
+++ trunk/src/exechelp.c	2007-10-24 21:01:17 UTC (rev 273)
@@ -320,7 +320,7 @@
   si.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
   si.wShowWindow = DEBUG_W32_SPAWN? SW_SHOW : SW_MINIMIZE;
   si.hStdInput  = hnul;
-  si.hStdOutput = fd_to_handle (rp_stderr[0]);
+  si.hStdOutput = fd_to_handle (rp_stdout[1]);
   si.hStdError  = fd_to_handle (rp_stderr[1]);
 
   cr_flags = (CREATE_DEFAULT_ERROR_MODE




More information about the Gnupg-commits mailing list