* 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.
This commit is contained in:
Christopher Faylor
2005-09-12 21:19:07 +00:00
parent 6772e4c9e9
commit 4e993dc7cc
4 changed files with 12 additions and 2 deletions

View File

@@ -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;