Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 53688 invoked by uid 500); 10 Sep 2002 16:40:15 -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 53661 invoked from network); 10 Sep 2002 16:40:14 -0000 Date: 10 Sep 2002 16:40:13 -0000 Message-ID: <20020910164013.25162.qmail@icarus.apache.org> From: bnicholes@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/network_io/unix sa_common.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N bnicholes 2002/09/10 09:40:13 Modified: network_io/unix sa_common.c Log: Can not set h_errno on NetWare Revision Changes Path 1.57 +4 -0 apr/network_io/unix/sa_common.c Index: sa_common.c =================================================================== RCS file: /home/cvs/apr/network_io/unix/sa_common.c,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- sa_common.c 10 Jul 2002 20:42:18 -0000 1.56 +++ sa_common.c 10 Sep 2002 16:40:13 -0000 1.57 @@ -85,10 +85,14 @@ #endif }; +#ifndef NETWARE #ifdef HAVE_SET_H_ERRNO #define SET_H_ERRNO(newval) set_h_errno(newval) #else #define SET_H_ERRNO(newval) h_errno = (newval) +#endif +#else +#define SET_H_ERRNO(newval) #endif #if APR_HAS_THREADS && !defined(GETHOSTBYNAME_IS_THREAD_SAFE) && \