gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r12993 - gnunet/src/vpn


From: gnunet
Subject: [GNUnet-SVN] r12993 - gnunet/src/vpn
Date: Wed, 15 Sep 2010 10:32:00 +0200

Author: wachs
Date: 2010-09-15 10:32:00 +0200 (Wed, 15 Sep 2010)
New Revision: 12993

Modified:
   gnunet/src/vpn/gnunet-daemon-vpn.c
Log:
0001602: A patch to fix process spawning with redirected std streams 


Modified: gnunet/src/vpn/gnunet-daemon-vpn.c
===================================================================
--- gnunet/src/vpn/gnunet-daemon-vpn.c  2010-09-15 08:31:21 UTC (rev 12992)
+++ gnunet/src/vpn/gnunet-daemon-vpn.c  2010-09-15 08:32:00 UTC (rev 12993)
@@ -71,8 +71,8 @@
 static void helper_read(void* cls, const struct GNUNET_SCHEDULER_TaskContext* 
tsdkctx);
 
 static void start_helper_and_schedule() {
-       mycls.helper_in = GNUNET_DISK_pipe(GNUNET_YES);
-       mycls.helper_out = GNUNET_DISK_pipe(GNUNET_YES);
+       mycls.helper_in = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_NO);;
+       mycls.helper_out = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_NO, GNUNET_YES);
 
        if (mycls.helper_in == NULL || mycls.helper_out == NULL) return;
 




reply via email to

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