Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-04-30 07:40:26 +0400
committerChristopher Faylor <me@cgf.cx>2005-04-30 07:40:26 +0400
commit7b076c36fc1b6ba0e5943e540e9915eaa5bf0eb0 (patch)
tree5315e04de390b01ead729ee034aa5f711ea27022 /winsup
parent65e941162d856d2eef199b40f4a65a4c5aa253cd (diff)
* errno.cc (errmap): Map ERROR_NETNAME_DELETED to ENOSHARE.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/errno.cc1
2 files changed, 5 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 90e88a0da..d7dfd2a32 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-29 Christopher Faylor <cgf@timesys.com>
+
+ * errno.cc (errmap): Map ERROR_NETNAME_DELETED to ENOSHARE.
+
2005-04-28 Corinna Vinschen <corinna@vinschen.de>
* shared_info.h (cygwin_shared_address): Bump to a higher value to avoid
diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc
index 09bd2733b..76773f9b4 100644
--- a/winsup/cygwin/errno.cc
+++ b/winsup/cygwin/errno.cc
@@ -130,6 +130,7 @@ static NO_COPY struct
X (WORKING_SET_QUOTA, EAGAIN),
X (PAGEFILE_QUOTA, EAGAIN),
X (COMMITMENT_LIMIT, EAGAIN),
+ X (NETNAME_DELETED, ENOSHARE),
{ 0, NULL, 0}
};