Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 85011 invoked by uid 500); 17 Oct 2001 22:53:23 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 84985 invoked from network); 17 Oct 2001 22:53:23 -0000 Date: 17 Oct 2001 22:47:17 -0000 Message-ID: <20011017224717.54149.qmail@icarus.apache.org> From: bnicholes@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/file_io/netware pipe.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N bnicholes 01/10/17 15:47:17 Modified: file_io/netware pipe.c Log: Implemented two functions for NetWare Revision Changes Path 1.2 +0 -4 apr/file_io/netware/pipe.c Index: pipe.c =================================================================== RCS file: /home/cvs/apr/file_io/netware/pipe.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- pipe.c 2001/10/04 00:01:09 1.1 +++ pipe.c 2001/10/17 22:47:17 1.2 @@ -77,13 +77,11 @@ int err; unsigned long flags; -#ifdef TBD if (!(err = NXGetCtlInfo(thepipe->filedes, NX_CTL_FLAGS, &flags))) { flags &= ~NX_O_NONBLOCK; err = NXSetCtlInfo(thepipe->filedes, NX_CTL_FLAGS, flags); } -#endif if (err) return convert_error (err); @@ -97,13 +95,11 @@ int err; unsigned long flags; -#ifdef TBD if (!(err = NXGetCtlInfo(thepipe->filedes, NX_CTL_FLAGS, &flags))) { flags |= NX_O_NONBLOCK; err = NXSetCtlInfo(thepipe->filedes, NX_CTL_FLAGS, flags); } -#endif if (err) return convert_error (err);