* errno.cc (_sys_errlist): Add missing commas.
This commit is contained in:
parent
0f2de875b5
commit
7ede23a128
|
@ -1,3 +1,7 @@
|
|||
Mon May 14 15:37:29 2001 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* errno.cc (_sys_errlist): Add missing commas.
|
||||
|
||||
Mon May 14 16:13:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* security.cc (subauth): Check if Secur32.dll could be loaded.
|
||||
|
|
|
@ -255,11 +255,11 @@ extern const char __declspec(dllexport) * const _sys_errlist[]=
|
|||
/* ENOBUFS 105 */ "No buffer space available",
|
||||
/* EAFNOSUPPORT 106 */ "Address family not supported by protocol",
|
||||
/* EPROTOTYPE 107 */ "Protocol wrong type for transport endpoint",
|
||||
/* ENOTSOCK 108 */ "Socket operation on non-socket"
|
||||
/* ENOTSOCK 108 */ "Socket operation on non-socket",
|
||||
/* ENOPROTOOPT 109 */ "Protocol not available",
|
||||
/* ESHUTDOWN 110 */ "Cannot send after transport endpoint shutdown",
|
||||
/* ECONNREFUSED 111 */ "Connection refused",
|
||||
/* EADDRINUSE 112 */ "Address already in use"
|
||||
/* EADDRINUSE 112 */ "Address already in use",
|
||||
/* ECONNABORTED 113 */ "Connection aborted",
|
||||
/* ENETUNREACH 114 */ "Network is unreachable",
|
||||
/* ENETDOWN 115 */ "Network is down",
|
||||
|
|
Loading…
Reference in New Issue