gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r29490 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r29490 - gnunet/src/util
Date: Mon, 23 Sep 2013 14:43:05 +0200

Author: LRN
Date: 2013-09-23 14:43:04 +0200 (Mon, 23 Sep 2013)
New Revision: 29490

Modified:
   gnunet/src/util/os_priority.c
Log:
Change console inheritance on W32

This allows std handles to be properly inherited in case when
they are console handles (DETACHED_PROCESS completely forbids
access to the console and overrides anything)

Modified: gnunet/src/util/os_priority.c
===================================================================
--- gnunet/src/util/os_priority.c       2013-09-23 12:23:30 UTC (rev 29489)
+++ gnunet/src/util/os_priority.c       2013-09-23 12:43:04 UTC (rev 29490)
@@ -1053,7 +1053,7 @@
   }
 
   bresult = CreateProcessW (wpath, wcmd, NULL, NULL, GNUNET_YES,
-       DETACHED_PROCESS | CREATE_SUSPENDED, env_block, NULL, &start, &proc);
+       CREATE_NO_WINDOW | CREATE_SUSPENDED, env_block, NULL, &start, &proc);
   error_code = GetLastError ();
 
   if ((NULL == pipe_stdin) && (stdih))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]