projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73f4139
)
fix
author
Miklos Szeredi
<miklos@szeredi.hu>
Mon, 2 Jan 2006 12:52:24 +0000
(12:52 +0000)
committer
Miklos Szeredi
<miklos@szeredi.hu>
Mon, 2 Jan 2006 12:52:24 +0000
(12:52 +0000)
ChangeLog
patch
|
blob
|
history
util/mount.fuse
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
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
diff --git
a/util/mount.fuse
b/util/mount.fuse
index a81e5bcba218636ff74e2013d6d6f1a39f55f230..db9562f2558caa3c5a8c2a98b294ca493d29c531 100644
(file)
--- 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}