* path.cc (path_conv::check): Use full path name for determining attributes

when /cygdrive/x/foo.
This commit is contained in:
Christopher Faylor 2001-12-08 01:27:10 +00:00
parent 15a1d3f2fc
commit 397f94082d
2 changed files with 13 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2001-12-07 Christopher Faylor <cgf@redhat.com>
* path.cc (path_conv::check): Use full path name for determining
attributes when /cygdrive/x/foo.
2001-12-06 Christopher Faylor <cgf@redhat.com>
* path.cc (path_conv::check): Reset FH_CYGDRIVE if iterating through

View File

@ -481,10 +481,13 @@ path_conv::check (const char *src, unsigned opt,
if (devn == FH_CYGDRIVE)
{
if (component)
devn = FH_BAD;
fileattr = !unit ? FILE_ATTRIBUTE_DIRECTORY
: GetFileAttributes (full_path);
if (!component)
fileattr = FILE_ATTRIBUTE_DIRECTORY;
else
{
devn = FH_BAD;
fileattr = GetFileAttributes (this->path);
}
goto out;
}
/* devn should not be a device. If it is, then stop parsing now. */
@ -519,7 +522,7 @@ path_conv::check (const char *src, unsigned opt,
if ((opt & PC_SYM_IGNORE) && pcheck_case == PCHECK_RELAXED)
{
fileattr = GetFileAttributes (full_path);
fileattr = GetFileAttributes (this->path);
goto out;
}