* path.cc (path_conv::check): Revert allow_ntsec check so that volume info is
always retrieved and isdisk setting is properly set.
This commit is contained in:
parent
fb1a9f35e1
commit
df7320e1ba
@ -1,3 +1,8 @@
|
|||||||
|
Sun May 13 22:49:04 2001 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* path.cc (path_conv::check): Revert allow_ntsec check so that volume
|
||||||
|
info is always retrieved and isdisk setting is properly set.
|
||||||
|
|
||||||
Sun May 13 14:02:36 2001 Christopher Faylor <cgf@cygnus.com>
|
Sun May 13 14:02:36 2001 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* fhandler_tty.cc (fhandler_tty_common::dup): Preserve O_NOCTTY when
|
* fhandler_tty.cc (fhandler_tty_common::dup): Preserve O_NOCTTY when
|
||||||
|
@ -639,9 +639,9 @@ out:
|
|||||||
|
|
||||||
strcpy (tmp_buf, this->path);
|
strcpy (tmp_buf, this->path);
|
||||||
|
|
||||||
if (allow_ntsec && (!rootdir (tmp_buf) ||
|
if (!rootdir (tmp_buf) ||
|
||||||
!GetVolumeInformation (tmp_buf, NULL, 0, &serial, NULL,
|
!GetVolumeInformation (tmp_buf, NULL, 0, &serial, NULL,
|
||||||
&volflags, fs_name, 16)))
|
&volflags, fs_name, 16))
|
||||||
{
|
{
|
||||||
debug_printf ("GetVolumeInformation(%s) = ERR, this->path(%s), set_has_acls(FALSE)",
|
debug_printf ("GetVolumeInformation(%s) = ERR, this->path(%s), set_has_acls(FALSE)",
|
||||||
tmp_buf, this->path, GetLastError ());
|
tmp_buf, this->path, GetLastError ());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user