aboutsummaryrefslogtreecommitdiff
path: root/src/util/os_priority.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/os_priority.c')
-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