* mount.cc (mount_commands): Display "-X" option when appropriate.
This commit is contained in:
parent
e01eac68ed
commit
180cd17fa1
@ -1,3 +1,7 @@
|
|||||||
|
2005-05-13 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
|
* mount.cc (mount_commands): Display "-X" option when appropriate.
|
||||||
|
|
||||||
2005-05-08 Christopher Faylor <cgf@timesys.com>
|
2005-05-08 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* cygcheck.cc (nuke): New function.
|
* cygcheck.cc (nuke): New function.
|
||||||
@ -21,10 +25,6 @@
|
|||||||
* path.cc (getmntent): Add previously-omitted 'noexec' and 'managed'
|
* path.cc (getmntent): Add previously-omitted 'noexec' and 'managed'
|
||||||
flags to mnt_opts string if present in mount flags.
|
flags to mnt_opts string if present in mount flags.
|
||||||
|
|
||||||
2005-04-25 Christopher Faylor <cgf@timesys.com>
|
|
||||||
|
|
||||||
* mount.cc (mount_commands): Display "-X" option when appropriate.
|
|
||||||
|
|
||||||
2005-04-20 Brian Dessent <brian@dessent.net>
|
2005-04-20 Brian Dessent <brian@dessent.net>
|
||||||
|
|
||||||
* utils.sgml (mount): Clarify setting cygdrive prefix for user
|
* utils.sgml (mount): Clarify setting cygdrive prefix for user
|
||||||
|
@ -423,6 +423,8 @@ mount_commands (void)
|
|||||||
strcat (opts, " -x");
|
strcat (opts, " -x");
|
||||||
if (strstr (p->mnt_opts, ",noexec"))
|
if (strstr (p->mnt_opts, ",noexec"))
|
||||||
strcat (opts, " -E");
|
strcat (opts, " -E");
|
||||||
|
if (strstr (p->mnt_opts, ",cygexec"))
|
||||||
|
strcat (opts, " -X");
|
||||||
if (strstr (p->mnt_opts, ",managed"))
|
if (strstr (p->mnt_opts, ",managed"))
|
||||||
strcat (opts, " -o managed");
|
strcat (opts, " -o managed");
|
||||||
while ((c = strchr (p->mnt_fsname, '\\')) != NULL)
|
while ((c = strchr (p->mnt_fsname, '\\')) != NULL)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user