diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2008-07-17 15:07:48 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2008-07-17 15:07:48 +0000 |
commit | 874149c80c9f8252a9b11e9f9c070bc2cbc966c1 (patch) | |
tree | 7835e2a3345af7b0144bf74f1c1d6d9f8ea7d86a /winsup/utils/path.cc | |
parent | 5fc03e3d73b4247302a7a0844178888fac747660 (diff) | |
download | cygnal-874149c80c9f8252a9b11e9f9c070bc2cbc966c1.tar.gz cygnal-874149c80c9f8252a9b11e9f9c070bc2cbc966c1.tar.bz2 cygnal-874149c80c9f8252a9b11e9f9c070bc2cbc966c1.zip |
* mount.cc (do_mount): Remove MOUNT_ENC code.
(oopts): Remove "managed" option.
(mount_commands): Drop "managed" handling.
* path.cc (oopts): Remove "managed" option.
(getmntent): Remove MOUNT_ENC code.
Diffstat (limited to 'winsup/utils/path.cc')
-rw-r--r-- | winsup/utils/path.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/winsup/utils/path.cc b/winsup/utils/path.cc index 6e6b76039..5a6fe3bb7 100644 --- a/winsup/utils/path.cc +++ b/winsup/utils/path.cc @@ -298,8 +298,7 @@ struct opt {"exec", MOUNT_EXEC, 0}, {"notexec", MOUNT_NOTEXEC, 0}, {"cygexec", MOUNT_CYGWIN_EXEC, 0}, - {"nosuid", 0, 0}, - {"managed", MOUNT_ENC, 0} + {"nosuid", 0, 0} }; static bool @@ -843,8 +842,6 @@ getmntent (FILE *) strcat (mnt.mnt_opts, (char *) ",exec"); else if (m->flags & MOUNT_NOTEXEC) strcat (mnt.mnt_opts, (char *) ",noexec"); - if (m->flags & MOUNT_ENC) - strcat (mnt.mnt_opts, ",managed"); if ((m->flags & MOUNT_CYGDRIVE)) /* cygdrive */ strcat (mnt.mnt_opts, (char *) ",cygdrive"); mnt.mnt_freq = 1; |