Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 70968 invoked from network); 10 Jun 2009 15:45:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Jun 2009 15:45:07 -0000 Received: (qmail 4501 invoked by uid 500); 10 Jun 2009 15:45:19 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 4440 invoked by uid 500); 10 Jun 2009 15:45:19 -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 4431 invoked by uid 99); 10 Jun 2009 15:45:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Jun 2009 15:45:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Jun 2009 15:45:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A4D672388898; Wed, 10 Jun 2009 15:44:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r783400 - in /apr/apr/branches/1.3.x: ./ threadproc/unix/proc.c Date: Wed, 10 Jun 2009 15:44:53 -0000 To: commits@apr.apache.org From: rpluem@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090610154454.A4D672388898@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rpluem Date: Wed Jun 10 15:44:50 2009 New Revision: 783400 URL: http://svn.apache.org/viewvc?rev=783400&view=rev Log: Merge r783398 from trunk: * We need to disable inheritance in the case of success like in the cases for stdout and stdin. Submitted by: rpluem Reviewed by: rpluem Modified: apr/apr/branches/1.3.x/ (props changed) apr/apr/branches/1.3.x/threadproc/unix/proc.c Propchange: apr/apr/branches/1.3.x/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Wed Jun 10 15:44:50 2009 @@ -1 +1 @@ -/apr/apr/trunk:712674,733052,742752,782838 +/apr/apr/trunk:712674,733052,742752,782838,783398 Modified: apr/apr/branches/1.3.x/threadproc/unix/proc.c URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/threadproc/unix/proc.c?rev=783400&r1=783399&r2=783400&view=diff ============================================================================== --- apr/apr/branches/1.3.x/threadproc/unix/proc.c (original) +++ apr/apr/branches/1.3.x/threadproc/unix/proc.c Wed Jun 10 15:44:50 2009 @@ -78,7 +78,7 @@ if ((err != APR_NO_PIPE) && (err != APR_NO_FILE)) { if ((rv = apr_file_pipe_create_ex(&attr->parent_err, &attr->child_err, - err, attr->pool)) != APR_SUCCESS) + err, attr->pool)) == APR_SUCCESS) rv = apr_file_inherit_unset(attr->parent_err); if (rv != APR_SUCCESS) return rv;