aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/fuse.c2
-rw-r--r--lib/fuse_kern_chan.c2
-rw-r--r--lib/fuse_lowlevel.c3
-rw-r--r--lib/helper.c2
4 files changed, 4 insertions, 5 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index f2593fe..8555c45 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -28,7 +28,7 @@
/* FUSE flags: */
-/** Enable debuging output */
+/** Enable debugging output */
#define FUSE_DEBUG (1 << 1)
/** If a file is removed but it's still open, don't hide the file but
diff --git a/lib/fuse_kern_chan.c b/lib/fuse_kern_chan.c
index 7f7d09d..d2999c5 100644
--- a/lib/fuse_kern_chan.c
+++ b/lib/fuse_kern_chan.c
@@ -28,7 +28,7 @@ static int fuse_kern_chan_receive(struct fuse_chan *ch, char *buf, size_t size)
operation was interrupted */
if (err == EINTR || err == ENOENT)
return 0;
- /* ENODEV means we got unmounted, so we silenty return failure */
+ /* ENODEV means we got unmounted, so we silently return failure */
if (err != ENODEV)
perror("fuse: reading device");
return -1;
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
index 21d602d..95882ed 100644
--- a/lib/fuse_lowlevel.c
+++ b/lib/fuse_lowlevel.c
@@ -873,7 +873,7 @@ struct fuse_session *fuse_lowlevel_new(const char *opts,
};
if (sizeof(struct fuse_lowlevel_ops) < op_size) {
- fprintf(stderr, "fuse: warning: library too old, some operations may not not work\n");
+ fprintf(stderr, "fuse: warning: library too old, some operations may not work\n");
op_size = sizeof(struct fuse_lowlevel_ops);
}
@@ -901,4 +901,3 @@ struct fuse_session *fuse_lowlevel_new(const char *opts,
out:
return NULL;
}
-
diff --git a/lib/helper.c b/lib/helper.c
index 75959e2..b078c25 100644
--- a/lib/helper.c
+++ b/lib/helper.c
@@ -28,7 +28,7 @@ static void usage(const char *progname)
"FUSE options:\n"
" -d enable debug output (implies -f)\n"
" -f foreground operation\n"
- " -s disable multithreaded operation\n"
+ " -s disable multi-threaded operation\n"
" -r mount read only (equivalent to '-o ro')\n"
" -o opt,[opt...] mount options\n"
" -h print help\n"