mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Moved nt_err from liblutil to liblber, renamed WSAGetErrorString to
ber_pvt_wsa_err2string.
This commit is contained in:
parent
8d2aba12b4
commit
3dc83998c0
@ -90,9 +90,9 @@
|
||||
#undef sock_errno
|
||||
#undef sock_errstr
|
||||
#define sock_errno() WSAGetLastError()
|
||||
#define sock_errstr(e) WSAGetErrorString(e)
|
||||
#define sock_errstr(e) ber_pvt_wsa_err2string(e)
|
||||
|
||||
LIBLUTIL_F (char *) WSAGetErrorString LDAP_P((int));
|
||||
LIBLBER_F (char *) ber_pvt_wsa_err2string LDAP_P((int));
|
||||
|
||||
#elif MACOS
|
||||
# define tcp_close( s ) tcpclose( s )
|
||||
|
@ -8,10 +8,13 @@
|
||||
LIBRARY = liblber.la
|
||||
XLIBRARY = ../liblber.a
|
||||
|
||||
NT_SRCS = nt_err.c
|
||||
NT_OBJS = nt_err.lo
|
||||
|
||||
SRCS= assert.c decode.c encode.c io.c bprint.c \
|
||||
memory.c options.c sockbuf.c
|
||||
memory.c options.c sockbuf.c $(@PLAT@_SRCS)
|
||||
OBJS= assert.lo decode.lo encode.lo io.lo bprint.lo \
|
||||
memory.lo options.lo sockbuf.lo
|
||||
memory.lo options.lo sockbuf.lo $(@PLAT@_OBJS)
|
||||
XSRCS= version.c
|
||||
|
||||
PROGRAMS= dtest etest idtest
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
#define __RETSTR( x ) case x: return #x;
|
||||
|
||||
char *WSAGetErrorString( int err )
|
||||
char *ber_pvt_wsa_err2string( int err )
|
||||
{
|
||||
switch( err )
|
||||
{
|
||||
@ -84,13 +84,14 @@ char *WSAGetErrorString( int err )
|
||||
return "unknown";
|
||||
}
|
||||
|
||||
char *WSAGetLastErrorString( void )
|
||||
{
|
||||
return WSAGetErrorString( WSAGetLastError() );
|
||||
}
|
||||
|
||||
#undef __RETSTR
|
||||
|
||||
#if 0 /* No one seems to be using these */
|
||||
char *ber_pvt_wsa_last_errstring( void )
|
||||
{
|
||||
return ber_pvt_wsa_err2string( WSAGetLastError() );
|
||||
}
|
||||
|
||||
char *GetErrorString( int err )
|
||||
{
|
||||
static char msgBuf[1024];
|
||||
@ -108,6 +109,4 @@ char *GetLastErrorString( void )
|
||||
{
|
||||
return GetErrorString( GetLastError() );
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endif
|
@ -5,8 +5,8 @@
|
||||
|
||||
LIBRARY = liblutil.a
|
||||
|
||||
NT_SRCS = nt_err.c ntservice.c
|
||||
NT_OBJS = nt_err.o ntservice.o slapdmsg.res
|
||||
NT_SRCS = ntservice.c
|
||||
NT_OBJS = ntservice.o slapdmsg.res
|
||||
|
||||
UNIX_SRCS = detach.c
|
||||
UNIX_OBJS = detach.o
|
||||
|
Loading…
Reference in New Issue
Block a user