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>2005-09-13 01:19:07 +0400
committerChristopher Faylor <me@cgf.cx>2005-09-13 01:19:07 +0400
commit4e993dc7cc689ea2b0c3eead9e6ca6c45af9c19f (patch)
tree0073878ed1aab2f95824c4c704d938119fd14bb1 /winsup/cygwin/fhandler_disk_file.cc
parent6772e4c9e9160919374c0597fafb8e9fa76d9ddd (diff)
* cygthread.cc (cygthread::cygthread): Add more info to fatal error.
* fhandler_disk_file.cc (fhandler_disk_file::readdir): Temporarily remove insertion of /dev into root directory. * path.cc (path_conv::check): Ditto.
Diffstat (limited to 'winsup/cygwin/fhandler_disk_file.cc')
-rw-r--r--winsup/cygwin/fhandler_disk_file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_disk_file.cc b/winsup/cygwin/fhandler_disk_file.cc
index 70939a8aa..de786d088 100644
--- a/winsup/cygwin/fhandler_disk_file.cc
+++ b/winsup/cygwin/fhandler_disk_file.cc
@@ -1381,7 +1381,7 @@ fhandler_disk_file::readdir (DIR *dir, dirent *de)
bool added = false;
if (!(dir->__flags & dirent_isroot))
/* nothing */;
- else if (!(dir->__flags & dirent_saw_dev))
+ else if (0 && !(dir->__flags & dirent_saw_dev))
{
strcpy (buf.cFileName, "dev");
added = true;