* syscalls.cc (_rename): Set errno to ENOENT when an old path doesn't exist

(from Kazuhiro Fujieda <fujieda@jaist.ac.jp>).  Also set EACCES when directory
is not writable.
This commit is contained in:
Christopher Faylor
2001-03-10 20:25:19 +00:00
parent 766de5ad55
commit e2f2a27ee8
3 changed files with 11 additions and 3 deletions

View File

@@ -1268,8 +1268,8 @@ _rename (const char *oldpath, const char *newpath)
if (real_old.error)
{
set_errno (real_old.error);
syscall_printf ("-1 = rename (%s, %s)", oldpath, newpath);
set_errno (real_old.error);
return -1;
}
@@ -1293,8 +1293,8 @@ _rename (const char *oldpath, const char *newpath)
if (real_new.error)
{
set_errno (real_new.error);
syscall_printf ("-1 = rename (%s, %s)", oldpath, newpath);
set_errno (real_new.error);
return -1;
}
@@ -1302,12 +1302,14 @@ _rename (const char *oldpath, const char *newpath)
|| !writable_directory (real_new.get_win32 ()))
{
syscall_printf ("-1 = rename (%s, %s)", oldpath, newpath);
set_errno (EACCES);
return -1;
}
if (real_old.file_attributes () == (DWORD) -1) /* file to move doesn't exist */
{
syscall_printf ("file to move doesn't exist");
set_errno (ENOENT);
return (-1);
}