* mount.cc (do_mount): Replace --no-executable flag with notexec

mount option in hint for remote filesystems.
	* path.cc (getmntent): Fix typo (noexec -> notexec).
This commit is contained in:
Corinna Vinschen
2009-07-22 16:24:17 +00:00
parent 6c188691db
commit 3955529c8b
3 changed files with 8 additions and 2 deletions

View File

@@ -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;