diff options
author | Mike Kelly <mike@pair.com> | 2011-12-16 14:52:19 -0500 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2011-12-20 15:33:58 +0100 |
commit | ea0d68651e0f1822f9e4bb3bd9fecb642078d01a (patch) | |
tree | 03f218b7cc51a8c0524ec69e32473061d26e7981 /sshfs.c | |
parent | 2f6665d84ee5fa045901a999b719e9022a7d1a51 (diff) | |
download | sshfs-ea0d68651e0f1822f9e4bb3bd9fecb642078d01a.tar sshfs-ea0d68651e0f1822f9e4bb3bd9fecb642078d01a.tar.gz sshfs-ea0d68651e0f1822f9e4bb3bd9fecb642078d01a.tar.bz2 sshfs-ea0d68651e0f1822f9e4bb3bd9fecb642078d01a.zip |
Fix typo in error message
s/FD_CLOESEC/FD_CLOEXEC/
Diffstat (limited to 'sshfs.c')
-rw-r--r-- | sshfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |