Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-05-25 23:48:45 +0400
committerChristopher Faylor <me@cgf.cx>2000-05-25 23:48:45 +0400
commite3df22607a8dbfb15b3157a7c39f2d96b029fcec (patch)
tree72db3e36ce71d8ec841a74371f98e586c5fe8759 /winsup/cygwin/dir.cc
parent382541f2f2f6e1131f9b141464b4162d19b3012d (diff)
* dir.cc (rmdir): Use file attributes that have already been discovered by
path_conv.
Diffstat (limited to 'winsup/cygwin/dir.cc')
-rw-r--r--winsup/cygwin/dir.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/dir.cc b/winsup/cygwin/dir.cc
index dc70ae117..6ab6dae1c 100644
--- a/winsup/cygwin/dir.cc
+++ b/winsup/cygwin/dir.cc
@@ -341,8 +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. */
- int attr = GetFileAttributes (real_dir.get_win32());
- if (attr != -1 && !(attr & FILE_ATTRIBUTE_DIRECTORY))
+ if (real_dir.fileattr != (DWORD) -1 && !(real_dir.fileattr & FILE_ATTRIBUTE_DIRECTORY))
set_errno (ENOTDIR);
else if (os_being_run != winNT)
set_errno (ENOTEMPTY);