diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-04-15 15:00:53 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-04-15 15:00:53 +0000 |
commit | 8a6448fb4f4dbfab07995028ce8f2516c563cac3 (patch) | |
tree | b73a10218990841af0d58f2e433752f8092c4aec /src/util/os_priority.c | |
parent | 4e668e13d72a1fc55abfe69578c0486fdf02cd78 (diff) |
-no boolean
Diffstat (limited to 'src/util/os_priority.c')
-rw-r--r-- | src/util/os_priority.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c index e86de968aa..e0e1614f4f 100644 --- a/src/util/os_priority.c +++ b/src/util/os_priority.c @@ -634,7 +634,7 @@ start_process (int pipe_control, int fd_stdin_read; int fd_stdin_write; - if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, FALSE, NULL)) + if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, GNUNET_NO, NULL)) return NULL; /* not executable */ if (GNUNET_YES == pipe_control) { @@ -865,7 +865,7 @@ start_process (int pipe_control, BOOL bresult; DWORD error_code; - if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, FALSE, NULL)) + if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, GNUNET_NO, NULL)) return NULL; /* not executable */ /* Search in prefix dir (hopefully - the directory from which @@ -1162,7 +1162,7 @@ start_process (int pipe_control, return NULL; } - bresult = CreateProcessW (wpath, wcmd, NULL, NULL, TRUE, + bresult = CreateProcessW (wpath, wcmd, NULL, NULL, GNUNET_YES, DETACHED_PROCESS | CREATE_SUSPENDED, env_block, NULL, &start, &proc); error_code = GetLastError (); |