This is the mail archive of the
cygwin-patches@cygwin.com
mailing list for the Cygwin project.
Patch1: fix for mount -m command.
- From: AJ Reins <reinsaj at yahoo dot com>
- To: cygwin-patches at cygwin dot com
- Date: Wed, 3 Sep 2003 17:30:12 -0700 (PDT)
- Subject: Patch1: fix for mount -m command.
2003-09-01 AJ Reins <reinsaj@yahoo.com>
* mount.cc (mount_commands): Ensure user mode is
actually user
mode and not the default system mode.
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
2003-09-01 AJ Reins <reinsaj@yahoo.com>
* mount.cc (mount_commands): Ensure user mode is actually user
mode and not the default system mode.
--- mount.cc 2003-07-26 00:38:51.000000000 -0500
+++ mount1.cc 2003-09-01 08:34:00.000000000 -0500
@@ -433,7 +433,7 @@
cygwin_internal (CW_GET_CYGDRIVE_INFO, user, system, user_flags,
system_flags);
if (strlen (user) > 0) {
- strcpy (opts, " ");
+ strcpy (opts, " -u");
if (user_flags[0] == 'b')
strcat (opts, " -b");
else if (user_flags[0] == 't')