* dir.cc (rmdir): Use file attributes that have already been discovered

by path_conv.
This commit is contained in:
Christopher Faylor 2000-05-25 21:02:28 +00:00
parent e3df22607a
commit 7e06494e35
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
Thu May 25 13:29:23 2000 Christopher Faylor <cgf@cygnus.com>
Thu May 25 17:01:53 2000 Christopher Faylor <cgf@cygnus.com>
* dir.cc (rmdir): Use file attributes that have already been discovered
by path_conv.

View File

@ -341,7 +341,7 @@ rmdir (const char *dir)
/* Under Windows 9X or on a samba share, ERROR_ACCESS_DENIED is
returned if you try to remove a file. On 9X the same error is
returned if you try to remove a non-empty directory. */
if (real_dir.fileattr != (DWORD) -1 && !(real_dir.fileattr & FILE_ATTRIBUTE_DIRECTORY))
if (real_dir.file_attributes () != (DWORD) -1 && !(real_dir.fileattr & FILE_ATTRIBUTE_DIRECTORY))
set_errno (ENOTDIR);
else if (os_being_run != winNT)
set_errno (ENOTEMPTY);