* path.cc (path_conv::check): Always reset to FH_FS when component != 0 and

FH_NETDRIVE to fix problems with strict case checking.
This commit is contained in:
Christopher Faylor 2005-06-14 23:52:53 +00:00
parent fbc0e572ce
commit 0fc9cf11f8
2 changed files with 16 additions and 14 deletions

View File

@ -1,3 +1,8 @@
2005-06-14 Christopher Faylor <cgf@timesys.com>
* path.cc (path_conv::check): Always reset to FH_FS when component != 0
and FH_NETDRIVE to fix problems with strict case checking.
2005-06-12 Corinna Vinschen <corinna@vinschen.de>
* fhandler_socket.cc (fhandler_socket::recvmsg): Avoid SEGV in OpenSSH

View File

@ -886,9 +886,7 @@ out:
error = EROFS;
return;
}
else if (isvirtual_dev (dev.devn) && fileattr == INVALID_FILE_ATTRIBUTES)
{
if (dev.devn == FH_NETDRIVE && component)
else if (dev.devn == FH_NETDRIVE && component)
{
/* This case indicates a non-existant resp. a non-retrievable
share. This happens for instance if the share is a printer.
@ -897,12 +895,11 @@ out:
is used on it. */
dev.parse (FH_FS);
}
else
else if (isvirtual_dev (dev.devn) && fileattr == INVALID_FILE_ATTRIBUTES)
{
error = dev.devn == FH_NETDRIVE ? ENOSHARE : ENOENT;
return;
}
}
else if (!need_directory || error)
/* nothing to do */;
else if (fileattr & FILE_ATTRIBUTE_DIRECTORY)