]> sourceware.org Git - newlib-cygwin.git/commitdiff
* mount.cc (mount_commands): Display "-X" option when appropriate.
authorChristopher Faylor <me@cgf.cx>
Fri, 13 May 2005 20:24:20 +0000 (20:24 +0000)
committerChristopher Faylor <me@cgf.cx>
Fri, 13 May 2005 20:24:20 +0000 (20:24 +0000)
winsup/utils/ChangeLog
winsup/utils/mount.cc

index 27477891e35c33a15f1e4d48cdafd93946f8b8c3..081844258efc8655bfc3a86918a221bcaf1a5b29 100644 (file)
@@ -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>
 
        * cygcheck.cc (nuke): New function.
        * path.cc (getmntent): Add previously-omitted 'noexec' and 'managed'
        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>
 
        * utils.sgml (mount): Clarify setting cygdrive prefix for user
index 89220f20f4b92ba15689e85d56452ab3b70e8df3..4a874b5665e0142a891c8e58128dbbf22b51dec2 100644 (file)
@@ -423,6 +423,8 @@ mount_commands (void)
          strcat (opts, " -x");
        if (strstr (p->mnt_opts, ",noexec"))
          strcat (opts, " -E");
+       if (strstr (p->mnt_opts, ",cygexec"))
+         strcat (opts, " -X");
        if (strstr (p->mnt_opts, ",managed"))
          strcat (opts, " -o managed");
        while ((c = strchr (p->mnt_fsname, '\\')) != NULL)
This page took 0.031497 seconds and 5 git commands to generate.