You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2007/09/04 02:11:24 UTC

svn commit: r572457 - /apr/apr/trunk/threadproc/win32/proc.c

Author: wrowe
Date: Mon Sep  3 17:11:24 2007
New Revision: 572457

URL: http://svn.apache.org/viewvc?rev=572457&view=rev
Log:
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).

Modified:
    apr/apr/trunk/threadproc/win32/proc.c

Modified: apr/apr/trunk/threadproc/win32/proc.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/threadproc/win32/proc.c?rev=572457&r1=572456&r2=572457&view=diff
==============================================================================
--- apr/apr/trunk/threadproc/win32/proc.c (original)
+++ apr/apr/trunk/threadproc/win32/proc.c Mon Sep  3 17:11:24 2007
@@ -799,8 +799,8 @@
                                          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);