Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-07-22 20:24:17 +0400
committerCorinna Vinschen <corinna@vinschen.de>2009-07-22 20:24:17 +0400
commit3955529c8b351de06a733adb225b195bb82eba91 (patch)
tree044b559f166de94f1a66efac61012c4eb8197eca /winsup/utils/mount.cc
parent6c188691db7c649af3189cd71d6f674e48b1ffa9 (diff)
* mount.cc (do_mount): Replace --no-executable flag with notexec
mount option in hint for remote filesystems. * path.cc (getmntent): Fix typo (noexec -> notexec).
Diffstat (limited to 'winsup/utils/mount.cc')
-rw-r--r--winsup/utils/mount.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/mount.cc b/winsup/utils/mount.cc
index 3412feccb..bdedfa171 100644
--- a/winsup/utils/mount.cc
+++ b/winsup/utils/mount.cc
@@ -100,7 +100,7 @@ do_mount (const char *dev, const char *where, int flags)
strcat (devtmp, "\\");
if (GetDriveType (devtmp) == DRIVE_REMOTE)
{
- fprintf (stderr, "%s: defaulting to '--no-executable' flag for speed since native path\n"
+ fprintf (stderr, "%s: defaulting to 'notexec' mount option for speed since native path\n"
"%*creferences a remote share. Use '-f' option to override.\n", progname,
strlen(progname) + 2, ' ');
flags |= MOUNT_NOTEXEC;