diff options
author | Christopher Faylor <me@cgf.cx> | 2005-08-19 16:18:42 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-08-19 16:18:42 +0000 |
commit | 358063ace374e05025d124a17a0167b818b666ea (patch) | |
tree | 141d05fd45248dc6e1ebe017100900c8bf7cc2e6 /winsup/cygwin/fhandler_virtual.cc | |
parent | 82ef66c933bb3d90a8a27a0c6c18a9b9bfe3d8bc (diff) | |
download | cygnal-358063ace374e05025d124a17a0167b818b666ea.tar.gz cygnal-358063ace374e05025d124a17a0167b818b666ea.tar.bz2 cygnal-358063ace374e05025d124a17a0167b818b666ea.zip |
* fhandler.h (dirent_states): Add dirent_isroot, dirent_saw_cygdrive,
dirent_saw_dev.
* dir.cc (opendir): Don't zero __flags here. Push that responsibility to
opendir methods.
(seekdir): Preserve dirent_isrrot in __flags.
(rewinddir): Ditto.
* fhandler_disk_file.cc (fhandler_disk_file::opendir): Set dirent_isroot
appropriately.
(fhandler_disk_file::readdir): Fill in "cygdrive" and "dev" if it is the root
dir and they are missing.
* fhandler_process.cc (fhandler_process::opendir): Set __flags here.
* fhandler_virtual.cc (fhandler_virtual::opendir): Set __flags here.
Diffstat (limited to 'winsup/cygwin/fhandler_virtual.cc')
-rw-r--r-- | winsup/cygwin/fhandler_virtual.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler_virtual.cc b/winsup/cygwin/fhandler_virtual.cc index a052c4bcd..9afc1d760 100644 --- a/winsup/cygwin/fhandler_virtual.cc +++ b/winsup/cygwin/fhandler_virtual.cc @@ -84,6 +84,7 @@ fhandler_virtual::opendir () dir->__d_dirhash = get_namehash (); dir->__flags = dirent_saw_dot | dirent_saw_dot_dot; res = dir; + res->__flags = 0; } } |