aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/os_priority.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index ba2034c89..6074a1f24 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -1189,7 +1189,7 @@ start_process (int pipe_control,
1189 &stdin_handle, sizeof (HANDLE)); 1189 &stdin_handle, sizeof (HANDLE));
1190 start.hStdInput = stdin_handle; 1190 start.hStdInput = stdin_handle;
1191 } 1191 }
1192 if (stdih) 1192 else if (stdih)
1193 { 1193 {
1194 if (std_inheritance & GNUNET_OS_INHERIT_STD_IN) 1194 if (std_inheritance & GNUNET_OS_INHERIT_STD_IN)
1195 { 1195 {
@@ -1212,7 +1212,7 @@ start_process (int pipe_control,
1212 &stdout_handle, sizeof (HANDLE)); 1212 &stdout_handle, sizeof (HANDLE));
1213 start.hStdOutput = stdout_handle; 1213 start.hStdOutput = stdout_handle;
1214 } 1214 }
1215 if (stdoh) 1215 else if (stdoh)
1216 { 1216 {
1217 if (std_inheritance & GNUNET_OS_INHERIT_STD_OUT) 1217 if (std_inheritance & GNUNET_OS_INHERIT_STD_OUT)
1218 { 1218 {