diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | util/mount.fuse | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-01-02 Miklos Szeredi <miklos@szeredi.hu> + + * Fix mount.fuse so that it ignores the 'user' option. + Report and solution from Mattd. + 2005-12-16 Miklos Szeredi <miklos@szeredi.hu> * Clean up the option parsing interface slightly, by creating an diff --git a/util/mount.fuse b/util/mount.fuse index a81e5bc..db9562f 100644 --- a/util/mount.fuse +++ b/util/mount.fuse @@ -40,7 +40,7 @@ MOUNTPOINT="$2" shift shift -OPTIONS="$@" +OPTIONS=`echo $@ | sed 's/,user//'` export PATH ${FSTYPE} ${MOUNTPATH} ${MOUNTPOINT} ${OPTIONS} |