* mount.cc (mount_info::from_fstab_line): Make cygdrive posix=0 by
default as documented.
This commit is contained in:
parent
8cf4b71e1f
commit
0211e37a62
|
@ -1,3 +1,8 @@
|
||||||
|
2009-02-13 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* mount.cc (mount_info::from_fstab_line): Make cygdrive posix=0 by
|
||||||
|
default as documented.
|
||||||
|
|
||||||
2009-02-13 Corinna Vinschen <corinna@vinschen.de>
|
2009-02-13 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygwin.din: Export wcstod and wcstof.
|
* cygwin.din: Export wcstod and wcstof.
|
||||||
|
|
|
@ -914,6 +914,8 @@ mount_info::from_fstab_line (char *line, bool user)
|
||||||
cend = find_ws (c);
|
cend = find_ws (c);
|
||||||
*cend = '\0';
|
*cend = '\0';
|
||||||
unsigned mount_flags = MOUNT_SYSTEM | MOUNT_BINARY;
|
unsigned mount_flags = MOUNT_SYSTEM | MOUNT_BINARY;
|
||||||
|
if (!strcmp (fs_type, "cygdrive"))
|
||||||
|
mount_flags |= MOUNT_NOPOSIX;
|
||||||
if (!read_flags (c, mount_flags))
|
if (!read_flags (c, mount_flags))
|
||||||
return true;
|
return true;
|
||||||
if (user)
|
if (user)
|
||||||
|
|
Loading…
Reference in New Issue