aboutsummaryrefslogtreecommitdiff
path: root/sshfs.c
diff options
context:
space:
mode:
authorMike Kelly <mike@pair.com>2011-12-16 14:52:19 -0500
committerBenjamin Fleischer <fleiben@gmail.com>2012-01-22 11:16:43 +0100
commitbb3ea51117a5dfd98f00fb829f8576e009593dda (patch)
treefaee0a3f193cc5bfdcfcbae00df365b8e94abc80 /sshfs.c
parent20fafed0a409160734f3af148e424312c239550d (diff)
downloadsshfs-bb3ea51117a5dfd98f00fb829f8576e009593dda.tar
sshfs-bb3ea51117a5dfd98f00fb829f8576e009593dda.tar.gz
sshfs-bb3ea51117a5dfd98f00fb829f8576e009593dda.tar.bz2
sshfs-bb3ea51117a5dfd98f00fb829f8576e009593dda.zip
Fix typo in error message
s/FD_CLOESEC/FD_CLOEXEC/
Diffstat (limited to 'sshfs.c')
-rw-r--r--sshfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshfs.c b/sshfs.c
index b971530..7d7210e 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -3703,7 +3703,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);