fix
authorMiklos Szeredi <miklos@szeredi.hu>
Mon, 2 Jan 2006 12:52:24 +0000 (12:52 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Mon, 2 Jan 2006 12:52:24 +0000 (12:52 +0000)
ChangeLog
util/mount.fuse

index e613354b45580d336918afcd37fbdb699dd48836..417955daf4e5c4ca445508bd7a17ca333cb5136b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index a81e5bcba218636ff74e2013d6d6f1a39f55f230..db9562f2558caa3c5a8c2a98b294ca493d29c531 100644 (file)
@@ -40,7 +40,7 @@ MOUNTPOINT="$2"
 shift
 shift
 
-OPTIONS="$@"
+OPTIONS=`echo $@ | sed 's/,user//'`
 
 export PATH
 ${FSTYPE} ${MOUNTPATH} ${MOUNTPOINT} ${OPTIONS}