Return-Path: Delivered-To: apmail-new-httpd-archive@apache.org Received: (qmail 62230 invoked by uid 500); 9 Jan 2001 05:08:21 -0000 Mailing-List: contact new-httpd-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list new-httpd@apache.org Received: (qmail 62209 invoked from network); 9 Jan 2001 05:08:20 -0000 Errors-To: From: "William A. Rowe, Jr." To: Subject: RE: cvs commit: httpd-2.0/support ab.c Date: Mon, 8 Jan 2001 23:08:34 -0600 Message-ID: <001d01c079fa$38083220$92c0b0d0@roweclan.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 In-Reply-To: <20010109044818.52200.qmail@apache.org> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N From: trawick@apache.org [mailto:trawick@apache.org] Sent: Monday, January 08, 2001 10:48 PM trawick 01/01/08 20:48:18 Modified: support ab.c Log: get rid of a non-portable use of errno @@ -988,7 +988,7 @@ if (apr_open(&postfd, pfile, APR_READ, mode, cntxt) != APR_SUCCESS) { printf("Invalid postfile name (%s)\n", pfile); - return errno; + return ENOENT; } apr_getfileinfo(&finfo, postfd); Don't you mean APR_ENOENT here?