aboutsummaryrefslogtreecommitdiffstats
path: root/FAQ
diff options
context:
space:
mode:
authorReuben Hawkins <reubenhwk@gmail.com>2011-05-23 07:10:35 -0700
committerMiklos Szeredi <mszeredi@suse.cz>2011-05-25 11:30:43 +0200
commit54f93a7a1dbae4d2c3dceec47b9be1c8c059e16b (patch)
tree6704eb75521af501a59e321c963f6dfb38629de7 /FAQ
parent1193a39c0869a3608f22472735bcffdcccb6b2a5 (diff)
downloadlibfuse-54f93a7a1dbae4d2c3dceec47b9be1c8c059e16b.tar.gz
Spell checking comments, etc...
...with the help of vim :set spell modified: FAQ modified: include/fuse.h modified: include/fuse_common.h modified: include/fuse_opt.h modified: lib/fuse_kern_chan.c modified: util/fusermount.c
Diffstat (limited to 'FAQ')
-rw-r--r--FAQ8
1 files changed, 4 insertions, 4 deletions
diff --git a/FAQ b/FAQ
index 8598f7e..038fb4b 100644
--- a/FAQ
+++ b/FAQ
@@ -93,7 +93,7 @@ See COPYING.LIB in the distribution.
In simple terms as long as you are linking dynamically (the default)
there are no limitations on linking with libfuse. For example you may
distribute the filesystem itself in binary form, without source code,
-under any propriatery license.
+under any proprietary license.
Under what conditions may I distribute a filesystem that uses the raw
---------------------------------------------------------------------
@@ -303,7 +303,7 @@ write permissions for the owner?
being to atomically obtain a read/write file handle and make the file
read-only. Unfortunately, this does not work very well in fuse, since
you first get a mknod, and then an open call. At the time of open,
-you can't distinguish easily wether this is the first open issued by
+you can't distinguish easily whether this is the first open issued by
cp, or another process trying to write a read-only file.
Defining the 'create' method solves this problem, however this
@@ -371,8 +371,8 @@ causes of this are (non-exhaustive)
* You are running a 64 bit kernel but using a 32 bit libfuse. In this case
you will need to install a 64 bit version of the FUSE userspace library,
64 bit versions of all of the FUSE filesystems or language bindings that
- link to it, and 64 bit versions of all of their dependancies. Your
- distribution may provide 64 bit versions of the basic dependancies like
+ link to it, and 64 bit versions of all of their dependencies. Your
+ distribution may provide 64 bit versions of the basic dependencies like
libc even in its 32 bit environment
Misc