Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 97826 invoked by uid 500); 10 May 2001 17:41:42 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 97314 invoked from network); 10 May 2001 17:41:32 -0000 X-Authentication-Warning: kurgan.lyra.org: gstein set sender to gstein@lyra.org using -f Date: Thu, 10 May 2001 10:45:30 -0700 From: Greg Stein To: Bill Tutt Cc: dev@apr.apache.org Subject: Re: APR_STATUS_IS_ENOENT on Win32 Message-ID: <20010510104530.N1374@lyra.org> Mail-Followup-To: Bill Tutt , dev@apr.apache.org References: <58C671173DB6174A93E9ED88DCB0883D02667C5D@red-msg-07.redmond.corp.microsoft.com> <58C671173DB6174A93E9ED88DCB0883D02667C5E@red-msg-07.redmond.corp.microsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <58C671173DB6174A93E9ED88DCB0883D02667C5E@red-msg-07.redmond.corp.microsoft.com>; from rassilon@lyra.org on Thu, May 10, 2001 at 10:10:17AM -0700 X-URL: http://www.lyra.org/greg/ X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Committed, thanks! (skipped the first patch, this is the second one) Cheers, -g On Thu, May 10, 2001 at 10:10:17AM -0700, Bill Tutt wrote: > Let's try this instead. :) > > Bill > > Index: apr_errno.h > =================================================================== > RCS file: /home/cvspublic/apr/include/apr_errno.h,v > retrieving revision 1.59 > diff -u -r1.59 apr_errno.h > --- apr_errno.h 2001/05/02 20:01:43 1.59 > +++ apr_errno.h 2001/05/10 17:09:51 > @@ -636,7 +636,8 @@ > #define APR_STATUS_IS_ENOENT(s) ((s) == APR_ENOENT \ > || (s) == APR_OS_START_SYSERR + ERROR_FILE_NOT_FOUND \ > || (s) == APR_OS_START_SYSERR + ERROR_PATH_NOT_FOUND \ > - || (s) == APR_OS_START_SYSERR + ERROR_OPEN_FAILED) > + || (s) == APR_OS_START_SYSERR + ERROR_OPEN_FAILED \ > + || (s) == APR_OS_START_SYSERR + ERROR_NO_MORE_FILES) > #define APR_STATUS_IS_ENOTDIR(s) ((s) == APR_ENOTDIR) > #define APR_STATUS_IS_ENOSPC(s) ((s) == APR_ENOSPC \ > || (s) == APR_OS_START_SYSERR + ERROR_DISK_FULL) -- Greg Stein, http://www.lyra.org/