* path.cc (symlink_info::check): Remove erroneous assumption about
required permissions when reading NFS symlinks.
This commit is contained in:
parent
1b0358455c
commit
ab3cd88858
|
@ -1,3 +1,8 @@
|
||||||
|
2010-09-30 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* path.cc (symlink_info::check): Remove erroneous assumption about
|
||||||
|
required permissions when reading NFS symlinks.
|
||||||
|
|
||||||
2010-09-29 Christopher Faylor <me+cygwin@cgf.cx>
|
2010-09-29 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
* fhandler_tty.cc (fhandler_tty_slave::init): Revert to using
|
* fhandler_tty.cc (fhandler_tty_slave::init): Revert to using
|
||||||
|
|
|
@ -2651,10 +2651,7 @@ restart:
|
||||||
(which can be symlinks to directories). */
|
(which can be symlinks to directories). */
|
||||||
else if (fs.is_nfs () && !no_ea && !(fileattr & FILE_ATTRIBUTE_DIRECTORY))
|
else if (fs.is_nfs () && !no_ea && !(fileattr & FILE_ATTRIBUTE_DIRECTORY))
|
||||||
{
|
{
|
||||||
if (!(access & GENERIC_READ))
|
res = check_nfs_symlink (h);
|
||||||
res = 0;
|
|
||||||
else
|
|
||||||
res = check_nfs_symlink (h);
|
|
||||||
if (res)
|
if (res)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue