aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kelly <mike@pair.com>2011-12-16 14:52:19 -0500
committerMiklos Szeredi <mszeredi@suse.cz>2011-12-20 15:33:58 +0100
commitea0d68651e0f1822f9e4bb3bd9fecb642078d01a (patch)
tree03f218b7cc51a8c0524ec69e32473061d26e7981
parent2f6665d84ee5fa045901a999b719e9022a7d1a51 (diff)
downloadsshfs-ea0d68651e0f1822f9e4bb3bd9fecb642078d01a.tar
sshfs-ea0d68651e0f1822f9e4bb3bd9fecb642078d01a.tar.gz
sshfs-ea0d68651e0f1822f9e4bb3bd9fecb642078d01a.tar.bz2
sshfs-ea0d68651e0f1822f9e4bb3bd9fecb642078d01a.zip
Fix typo in error message
s/FD_CLOESEC/FD_CLOEXEC/
-rw-r--r--sshfs.c2
1 files changed, 1 insertions, 1 deletions
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);