aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Josh Soref <jsoref@users.noreply.github.com>2017-11-27 05:23:20 -0500
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-11-27 10:23:20 +0000
commit8157b4d9b9f13449f4750f1ef40f9f20a2242eec (patch)
treeecd2f2994be8ca002f6815f617e1ac221a7f8d78 /lib
parentae2cb7bd98f2f63b1b86320d7b8f0622d9a971d9 (diff)
Spelling (#223)
Fix spelling errors
Diffstat (limited to 'lib')
-rw-r--r--lib/fuse_lowlevel.c2
-rw-r--r--lib/helper.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
index 031793a..c426b7c 100644
--- a/lib/fuse_lowlevel.c
+++ b/lib/fuse_lowlevel.c
@@ -1936,7 +1936,7 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
se->op.init(se->userdata, &se->conn);
if (se->conn.want & (~se->conn.capable)) {
- fprintf(stderr, "fuse: error: filesystem requested capabilites "
+ fprintf(stderr, "fuse: error: filesystem requested capabilities "
"0x%x that are not supported by kernel, aborting.\n",
se->conn.want & (~se->conn.capable));
fuse_reply_err(req, EPROTO);
diff --git a/lib/helper.c b/lib/helper.c
index 3627749..4e82692 100644
--- a/lib/helper.c
+++ b/lib/helper.c
@@ -260,7 +260,7 @@ int fuse_daemonize(int foreground)
close(nullfd);
}
- /* Propagate completion of daemon initializatation */
+ /* Propagate completion of daemon initialization */
completed = 1;
(void) write(waiter[1], &completed, sizeof(completed));
close(waiter[0]);