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
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-03-28 20:57:13 +0400
committerChristopher Faylor <me@cgf.cx>2005-03-28 20:57:13 +0400
commit64443bd47efb038512e6979486eb19f952e8ba4b (patch)
tree3a696704ef149ef63d5c6ebd504c59623bc2de8d
parenteda51d16109a10bfae26436fce3b1e9bb2591788 (diff)
* errno.cc (FILENAME_EXCED_RANGE): Map to ENAMETOOLONG.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/errno.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 12e274d29..ad72bfb88 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2005-03-28 Eric Blake <ebb9@byu.net>
+
+ * errno.cc (FILENAME_EXCED_RANGE): Map to ENAMETOOLONG.
+
2005-03-27 Christopher Faylor <cgf@timesys.com>
* signal.cc (nanosleep): Revert tv_sec < 0 check as it is fixed
diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc
index 62cf1dcba..c2ba157d8 100644
--- a/winsup/cygwin/errno.cc
+++ b/winsup/cygwin/errno.cc
@@ -78,7 +78,7 @@ static NO_COPY struct
X (BUSY, EBUSY),
X (ALREADY_EXISTS, EEXIST),
X (NO_SIGNAL_SENT, EIO),
- X (FILENAME_EXCED_RANGE, EINVAL),
+ X (FILENAME_EXCED_RANGE, ENAMETOOLONG,
X (META_EXPANSION_TOO_LONG, EINVAL),
X (INVALID_SIGNAL_NUMBER, EINVAL),
X (THREAD_1_INACTIVE, EINVAL),