From 7ede23a128ebd35727944fae7019e294d8c98261 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 14 May 2001 19:39:57 +0000 Subject: [PATCH] * errno.cc (_sys_errlist): Add missing commas. --- winsup/cygwin/ChangeLog | 4 ++++ winsup/cygwin/errno.cc | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 41310f5dd..376170fdf 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +Mon May 14 15:37:29 2001 Christopher Faylor + + * errno.cc (_sys_errlist): Add missing commas. + Mon May 14 16:13:00 2001 Corinna Vinschen * security.cc (subauth): Check if Secur32.dll could be loaded. diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc index 3a4026077..f9a3ca15c 100644 --- a/winsup/cygwin/errno.cc +++ b/winsup/cygwin/errno.cc @@ -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",