From ea0d68651e0f1822f9e4bb3bd9fecb642078d01a Mon Sep 17 00:00:00 2001 From: Mike Kelly Date: Fri, 16 Dec 2011 14:52:19 -0500 Subject: Fix typo in error message s/FD_CLOESEC/FD_CLOEXEC/ --- sshfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshfs.c b/sshfs.c index 22c1e2d..c5a2434 100644 --- a/sshfs.c +++ b/sshfs.c @@ -3554,7 +3554,7 @@ int main(int argc, char *argv[]) res = fcntl(fuse_chan_fd(ch), F_SETFD, FD_CLOEXEC); if (res == -1) - perror("WARNING: failed to set FD_CLOESEC on fuse device"); + perror("WARNING: failed to set FD_CLOEXEC on fuse device"); fuse = fuse_new(ch, &args, cache_init(&sshfs_oper), sizeof(struct fuse_operations), NULL); -- cgit v1.2.3