]> sourceware.org Git - newlib-cygwin.git/commitdiff
* path.cc (fchdir): Pass the Posix path to chdir.
authorCorinna Vinschen <corinna@vinschen.de>
Tue, 8 Jun 2004 07:20:04 +0000 (07:20 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Tue, 8 Jun 2004 07:20:04 +0000 (07:20 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/path.cc

index 83316d5f303f1c250145b375a6c5d64abf5fb572..f21252c76361082d1d3991026e44f61ed8c3db9c 100644 (file)
@@ -1,3 +1,7 @@
+2004-06-08  Pierre Humblet <pierre.humblet@ieee.org>
+
+       * path.cc (fchdir): Pass the Posix path to chdir.
+
 2004-06-07  Christopher Faylor  <cgf@alum.bu.edu>
 
        * dtable.cc (dtable::find_fifo): Release lock after fifo found (still
index 105092e58826a3b774cc957e13defda82722fbf7..23bf2c20758184c72e7fb905b0863805d6dd43a8 100644 (file)
@@ -3358,7 +3358,7 @@ fchdir (int fd)
   int res;
   cygheap_fdget cfd (fd);
   if (cfd >= 0)
-    res = chdir (cfd->get_win32_name ());
+    res = chdir (cfd->get_name ());
   else
     res = -1;
 
This page took 0.037612 seconds and 5 git commands to generate.