summaryrefslogtreecommitdiff
path: root/threadproc
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-09-04 00:11:24 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-09-04 00:11:24 +0000
commit49d2494fff40efe43dc7d9b6d93653cd985ad004 (patch)
treea174351cb0d27299aec4fecdd86d15429bf0d022 /threadproc
parentd82d0da418c6e0e1b32b0454d15193446be5fa50 (diff)
downloadlibapr-49d2494fff40efe43dc7d9b6d93653cd985ad004.tar.gz
Fix cut and paste typo which scuttled the last release, this
caused StdOutput to never be inherited (something not noticed, nor particularly interesting in httpd, which is how I missed it). git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@572457 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc')
-rw-r--r--threadproc/win32/proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/threadproc/win32/proc.c b/threadproc/win32/proc.c
index c47c40ab4..d9c318ef1 100644
--- a/threadproc/win32/proc.c
+++ b/threadproc/win32/proc.c
@@ -799,8 +799,8 @@ APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new,
HANDLE_FLAG_INHERIT, 0);
si.hStdOutput = attr->child_out->filehand;
- SetHandleInformation(si.hStdInput, HANDLE_FLAG_INHERIT,
- HANDLE_FLAG_INHERIT);
+ SetHandleInformation(si.hStdOutput, HANDLE_FLAG_INHERIT,
+ HANDLE_FLAG_INHERIT);
}
si.hStdError = GetStdHandle(STD_ERROR_HANDLE);