diff options
author | Christopher Faylor <me@cgf.cx> | 2003-07-04 03:08:26 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-07-04 03:08:26 +0000 |
commit | d108f312f9d0485a5decc719a2fade8d0ed03dca (patch) | |
tree | 61e27df36d235290f9766e16e22dd672fab8e3fc | |
parent | 3f21478315fd782d6f3cd466cc5def88b10660b3 (diff) | |
download | cygnal-d108f312f9d0485a5decc719a2fade8d0ed03dca.tar.gz cygnal-d108f312f9d0485a5decc719a2fade8d0ed03dca.tar.bz2 cygnal-d108f312f9d0485a5decc719a2fade8d0ed03dca.zip |
* path.cc (fillout_mntent): Change "posix" to "managed".
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/path.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 82045de21..948d6c2f6 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2003-07-03 Christopher Faylor <cgf@redhat.com> + + * path.cc (fillout_mntent): Change "posix" to "managed". + 2003-07-02 Christopher Faylor <cgf@redhat.com> * fhandler.h (FH_ENC): New enum. diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index ab3e51f30..b7d16fddd 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -2505,7 +2505,7 @@ fillout_mntent (const char *native_path, const char *posix_path, unsigned flags) else if (flags & MOUNT_NOTEXEC) strcat (_reent_winsup ()->mnt_opts, (char *) ",noexec"); if (flags & MOUNT_ENC) - strcat (_reent_winsup ()->mnt_opts, ",posix"); + strcat (_reent_winsup ()->mnt_opts, ",managed"); if ((flags & MOUNT_CYGDRIVE)) /* cygdrive */ strcat (_reent_winsup ()->mnt_opts, (char *) ",noumount"); |