]> sourceware.org Git - newlib-cygwin.git/commitdiff
* errno.cc (FILENAME_EXCED_RANGE): Map to ENAMETOOLONG.
authorChristopher Faylor <me@cgf.cx>
Mon, 28 Mar 2005 16:57:13 +0000 (16:57 +0000)
committerChristopher Faylor <me@cgf.cx>
Mon, 28 Mar 2005 16:57:13 +0000 (16:57 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/errno.cc

index 12e274d2982e0f8c200d758b797c04e2a1e65201..ad72bfb881c19848f1630b70aa53ee60dfc9baa6 100644 (file)
@@ -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
index 62cf1dcba020fc21af3f2f94f2960e978df6ac99..c2ba157d87f9b17344bdc75025385f096a9f6d2e 100644 (file)
@@ -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),
This page took 0.035235 seconds and 5 git commands to generate.