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:
ecfbf16
)
mount.fuse should handle spaces in paths. Debian Bug#417834
author
Miklos Szeredi
<miklos@szeredi.hu>
Thu, 5 Apr 2007 18:29:38 +0000
(18:29 +0000)
committer
Miklos Szeredi
<miklos@szeredi.hu>
Thu, 5 Apr 2007 18:29:38 +0000
(18:29 +0000)
ChangeLog
patch
|
blob
|
history
util/mount.fuse
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index 4008f8cce6c3c3d019c1208489e2cdbcf74e3b86..64e29c7d1a7cb32694ebcd2b77fe2a4a2f09f652 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,3
+1,8
@@
+2007-04-05 Miklos Szeredi <miklos@szeredi.hu>
+
+ * mount.fuse should handle spaces in paths. Debian Bug#417834.
+ Reported by Alexander Blazej
+
2007-03-05 Miklos Szeredi <miklos@szeredi.hu>
* mount.fuse should use /bin/bash. Debian Bug#413403. Reported
diff --git
a/util/mount.fuse
b/util/mount.fuse
index 5b9e3e19f3a279fcc0f506f6908614828ddebda0..6ee636e84efbb7b11affce72db5f32ed332f8bf3 100644
(file)
--- a/
util/mount.fuse
+++ b/
util/mount.fuse
@@
-57,4
+57,4
@@
IFS=" "
# add "-o " and remove trailing comma
OPTIONS="-o `echo $OPTIONS | sed "s/,$//"`"
-
${FSTYPE} ${MOUNTPATH} ${MOUNTPOINT}
${OPTIONS}
+
"${FSTYPE}" "${MOUNTPATH}" "${MOUNTPOINT}"
${OPTIONS}