summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2006-01-02 12:52:24 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2006-01-02 12:52:24 +0000
commitb863818bd67610fae0782f22d4fad4602411c8e2 (patch)
treec264e4735314b8594951fdc3bc66ad3414e35102
parent73f4139eb94ed98d66ec072f3ceb2a7d7f7bad59 (diff)
downloadfuse-b863818bd67610fae0782f22d4fad4602411c8e2.tar.gz
fix
-rw-r--r--ChangeLog5
-rw-r--r--util/mount.fuse2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e613354..417955d 100644
--- 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
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}