From dreid@apache.org Fri Dec 10 14:11:41 2004 Return-Path: Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Delivered-To: mailing list commits@apr.apache.org Received: (qmail 18327 invoked by uid 99); 10 Dec 2004 14:11:41 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 10 Dec 2004 06:11:38 -0800 Received: (qmail 23773 invoked by uid 65534); 10 Dec 2004 14:11:34 -0000 Date: 10 Dec 2004 14:11:34 -0000 Message-ID: <20041210141134.23769.qmail@minotaur.apache.org> From: dreid@apache.org To: commits@apr.apache.org Subject: svn commit: r111508 - /apr/apr/trunk/file_io/unix/pipe.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked Author: dreid Date: Fri Dec 10 06:11:31 2004 New Revision: 111508 URL: http://svn.apache.org/viewcvs?view=rev&rev=111508 Log: Fix a check. Contributed by: Ingo Weinhold Reviewed by: David Reid Modified: apr/apr/trunk/file_io/unix/pipe.c Modified: apr/apr/trunk/file_io/unix/pipe.c Url: http://svn.apache.org/viewcvs/apr/apr/trunk/file_io/unix/pipe.c?view=diff&rev=111508&p1=apr/apr/trunk/file_io/unix/pipe.c&r1=111507&p2=apr/apr/trunk/file_io/unix/pipe.c&r2=111508 ============================================================================== --- apr/apr/trunk/file_io/unix/pipe.c (original) +++ apr/apr/trunk/file_io/unix/pipe.c Fri Dec 10 06:11:31 2004 @@ -42,7 +42,7 @@ fd_flags &= ~O_NONBLOCK; # elif defined(O_NDELAY) fd_flags &= ~O_NDELAY; -# elif defined(FNDELAY) +# elif defined(O_FNDELAY) fd_flags &= ~O_FNDELAY; # else /* XXXX: this breaks things, but an alternative isn't obvious...*/ @@ -77,7 +77,7 @@ fd_flags |= O_NONBLOCK; # elif defined(O_NDELAY) fd_flags |= O_NDELAY; -# elif defined(FNDELAY) +# elif defined(O_FNDELAY) fd_flags |= O_FNDELAY; # else /* XXXX: this breaks things, but an alternative isn't obvious...*/