Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 78178 invoked from network); 4 Sep 2007 00:12:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Sep 2007 00:12:20 -0000 Received: (qmail 19728 invoked by uid 500); 4 Sep 2007 00:12:14 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 19683 invoked by uid 500); 4 Sep 2007 00:12:14 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 19672 invoked by uid 99); 4 Sep 2007 00:12:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Sep 2007 17:12:14 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Sep 2007 00:13:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4A85D1A9838; Mon, 3 Sep 2007 17:11:57 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r572458 - /apr/apr/branches/1.2.x/threadproc/win32/proc.c Date: Tue, 04 Sep 2007 00:11:57 -0000 To: commits@apr.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070904001157.4A85D1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wrowe Date: Mon Sep 3 17:11:56 2007 New Revision: 572458 URL: http://svn.apache.org/viewvc?rev=572458&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). Backport: 572457 Modified: apr/apr/branches/1.2.x/threadproc/win32/proc.c Modified: apr/apr/branches/1.2.x/threadproc/win32/proc.c URL: http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/threadproc/win32/proc.c?rev=572458&r1=572457&r2=572458&view=diff ============================================================================== --- apr/apr/branches/1.2.x/threadproc/win32/proc.c (original) +++ apr/apr/branches/1.2.x/threadproc/win32/proc.c Mon Sep 3 17:11:56 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);