* mount.cc (mount_info::from_fstab_line): Default to binary mount.

This commit is contained in:
Corinna Vinschen 2008-07-17 14:14:34 +00:00
parent 85f1119b7b
commit 5fc03e3d73
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-07-17 Corinna Vinschen <corinna@vinschen.de>
* mount.cc (mount_info::from_fstab_line): Default to binary mount.
2008-07-16 Corinna Vinschen <corinna@vinschen.de>
* path.cc (allow_winsymlinks): Revert default to create system bit

View File

@ -714,7 +714,7 @@ mount_info::from_fstab_line (char *line, bool user)
return true;
cend = find_ws (c);
*cend = '\0';
unsigned mount_flags = MOUNT_SYSTEM;
unsigned mount_flags = MOUNT_SYSTEM | MOUNT_BINARY;
if (!read_flags (c, mount_flags))
return true;
if (user)