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) && \
