From: Miklos Szeredi Date: Mon, 2 Jan 2006 12:52:24 +0000 (+0000) Subject: fix X-Git-Tag: fuse_2_5_0_pre2~16 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b863818bd67610fae0782f22d4fad4602411c8e2;p=qemu-gpiodev%2Flibfuse.git fix --- diff --git a/ChangeLog b/ChangeLog index e613354..417955d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-02 Miklos Szeredi + + * Fix mount.fuse so that it ignores the 'user' option. + Report and solution from Mattd. + 2005-12-16 Miklos Szeredi * 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}