diff options
author | Christopher Faylor <me@cgf.cx> | 2002-06-09 04:54:32 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-06-09 04:54:32 +0000 |
commit | 94cc482c646f890f26c37f47d945c3c50f7fff87 (patch) | |
tree | 2def8707836a8ba69b614d037d4b30f3c9acfec5 /winsup/utils/mount.cc | |
parent | 7ac66bdda062e2211b01b7eb07f2b640c58271da (diff) | |
download | newlib-94cc482c646f890f26c37f47d945c3c50f7fff87.zip newlib-94cc482c646f890f26c37f47d945c3c50f7fff87.tar.gz newlib-94cc482c646f890f26c37f47d945c3c50f7fff87.tar.bz2 |
* mount.cc (main): Use default system/user flag for cygdrive stuff, too.
(change_cygdrive_prefix): Change MOUNT_AUTO to MOUNT_CYGDRIVE.
* umount.cc (remove_cygdrive_prefix): Ditto.
(main): Use default system/user flag for cygdrive stuff, too.
Diffstat (limited to 'winsup/utils/mount.cc')
-rw-r--r-- | winsup/utils/mount.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/utils/mount.cc b/winsup/utils/mount.cc index 7c2f2a1..cd31310 100644 --- a/winsup/utils/mount.cc +++ b/winsup/utils/mount.cc @@ -275,7 +275,7 @@ main (int argc, char **argv) case saw_change_cygdrive_prefix: if (optind != argc) usage (); - change_cygdrive_prefix (argv[optind], flags); + change_cygdrive_prefix (argv[optind], flags | default_flag); break; case saw_show_cygdrive_prefix: if (optind <= argc) @@ -436,7 +436,7 @@ mount_already_exists (const char *posix_path, int flags) static void change_cygdrive_prefix (const char *new_prefix, int flags) { - flags |= MOUNT_AUTO; + flags |= MOUNT_CYGDRIVE; if (mount (NULL, new_prefix, flags)) error (new_prefix); |