* path.cc (fchdir): Pass the Posix path to chdir.
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user