* errno.cc (_sys_errlist): Add missing commas.

This commit is contained in:
Christopher Faylor 2001-05-14 19:39:57 +00:00
parent 0f2de875b5
commit 7ede23a128
2 changed files with 6 additions and 2 deletions

View File

@ -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> Mon May 14 16:13:00 2001 Corinna Vinschen <corinna@vinschen.de>
* security.cc (subauth): Check if Secur32.dll could be loaded. * security.cc (subauth): Check if Secur32.dll could be loaded.

View File

@ -255,11 +255,11 @@ extern const char __declspec(dllexport) * const _sys_errlist[]=
/* ENOBUFS 105 */ "No buffer space available", /* ENOBUFS 105 */ "No buffer space available",
/* EAFNOSUPPORT 106 */ "Address family not supported by protocol", /* EAFNOSUPPORT 106 */ "Address family not supported by protocol",
/* EPROTOTYPE 107 */ "Protocol wrong type for transport endpoint", /* 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", /* ENOPROTOOPT 109 */ "Protocol not available",
/* ESHUTDOWN 110 */ "Cannot send after transport endpoint shutdown", /* ESHUTDOWN 110 */ "Cannot send after transport endpoint shutdown",
/* ECONNREFUSED 111 */ "Connection refused", /* ECONNREFUSED 111 */ "Connection refused",
/* EADDRINUSE 112 */ "Address already in use" /* EADDRINUSE 112 */ "Address already in use",
/* ECONNABORTED 113 */ "Connection aborted", /* ECONNABORTED 113 */ "Connection aborted",
/* ENETUNREACH 114 */ "Network is unreachable", /* ENETUNREACH 114 */ "Network is unreachable",
/* ENETDOWN 115 */ "Network is down", /* ENETDOWN 115 */ "Network is down",