* 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

@@ -648,12 +648,14 @@ path_conv::check (const char *src, unsigned opt,
else if (dev == FH_DEV)
{
dev.devn = FH_FS;
#if 0
fileattr = GetFileAttributes (this->path);
if (!component && fileattr == INVALID_FILE_ATTRIBUTES)
{
fileattr = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_READONLY;
goto out;
}
#endif
}
else if (isvirtual_dev (dev.devn))
{