aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-04-15 15:00:53 +0000
committerChristian Grothoff <christian@grothoff.org>2013-04-15 15:00:53 +0000
commit8a6448fb4f4dbfab07995028ce8f2516c563cac3 (patch)
treeb73a10218990841af0d58f2e433752f8092c4aec /src/util
parent4e668e13d72a1fc55abfe69578c0486fdf02cd78 (diff)
downloadgnunet-8a6448fb4f4dbfab07995028ce8f2516c563cac3.tar.gz
gnunet-8a6448fb4f4dbfab07995028ce8f2516c563cac3.zip
-no boolean
Diffstat (limited to 'src/util')
-rw-r--r--src/util/os_priority.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index e86de968a..e0e1614f4 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -634,7 +634,7 @@ start_process (int pipe_control,
634 int fd_stdin_read; 634 int fd_stdin_read;
635 int fd_stdin_write; 635 int fd_stdin_write;
636 636
637 if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, FALSE, NULL)) 637 if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, GNUNET_NO, NULL))
638 return NULL; /* not executable */ 638 return NULL; /* not executable */
639 if (GNUNET_YES == pipe_control) 639 if (GNUNET_YES == pipe_control)
640 { 640 {
@@ -865,7 +865,7 @@ start_process (int pipe_control,
865 BOOL bresult; 865 BOOL bresult;
866 DWORD error_code; 866 DWORD error_code;
867 867
868 if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, FALSE, NULL)) 868 if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, GNUNET_NO, NULL))
869 return NULL; /* not executable */ 869 return NULL; /* not executable */
870 870
871 /* Search in prefix dir (hopefully - the directory from which 871 /* Search in prefix dir (hopefully - the directory from which
@@ -1162,7 +1162,7 @@ start_process (int pipe_control,
1162 return NULL; 1162 return NULL;
1163 } 1163 }
1164 1164
1165 bresult = CreateProcessW (wpath, wcmd, NULL, NULL, TRUE, 1165 bresult = CreateProcessW (wpath, wcmd, NULL, NULL, GNUNET_YES,
1166 DETACHED_PROCESS | CREATE_SUSPENDED, env_block, NULL, &start, &proc); 1166 DETACHED_PROCESS | CREATE_SUSPENDED, env_block, NULL, &start, &proc);
1167 error_code = GetLastError (); 1167 error_code = GetLastError ();
1168 1168