summaryrefslogtreecommitdiff
path: root/threadproc
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-09-04 00:12:26 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-09-04 00:12:26 +0000
commit3addc7862b0c2127c5eead001298383be840c238 (patch)
tree5c6151bbebc27311807e1b3298af1c0f33dfdaeb /threadproc
parent79f35b799fec1da8122a8328c703b424118535db (diff)
downloadlibapr-3addc7862b0c2127c5eead001298383be840c238.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). Backport: 572457 git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/0.9.x@572459 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 6644ef5b3..f18173b6c 100644
--- a/threadproc/win32/proc.c
+++ b/threadproc/win32/proc.c
@@ -684,8 +684,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);