* net.cc (errmap): Add missing mapping from WSAEINTR to EINTR.
This commit is contained in:
parent
631af2e6a3
commit
3065afdb13
|
@ -1,3 +1,7 @@
|
||||||
|
Wed May 16 21:34:00 2001 Fred Yankowski <fred@ontosys.com>
|
||||||
|
|
||||||
|
* net.cc (errmap): Add missing mapping from WSAEINTR to EINTR.
|
||||||
|
|
||||||
Wed May 16 09:20:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
Wed May 16 09:20:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* sec_helper.cc (legal_sid_type): Fix conditional. Change to
|
* sec_helper.cc (legal_sid_type): Fix conditional. Change to
|
||||||
|
|
|
@ -263,6 +263,7 @@ struct tl
|
||||||
|
|
||||||
static struct tl errmap[] =
|
static struct tl errmap[] =
|
||||||
{
|
{
|
||||||
|
{WSAEINTR, "WSAEINTR", EINTR},
|
||||||
{WSAEWOULDBLOCK, "WSAEWOULDBLOCK", EWOULDBLOCK},
|
{WSAEWOULDBLOCK, "WSAEWOULDBLOCK", EWOULDBLOCK},
|
||||||
{WSAEINPROGRESS, "WSAEINPROGRESS", EINPROGRESS},
|
{WSAEINPROGRESS, "WSAEINPROGRESS", EINPROGRESS},
|
||||||
{WSAEALREADY, "WSAEALREADY", EALREADY},
|
{WSAEALREADY, "WSAEALREADY", EALREADY},
|
||||||
|
|
Loading…
Reference in New Issue