From: Mike Kelly Date: Fri, 16 Dec 2011 19:52:19 +0000 (-0500) Subject: Fix typo in error message X-Git-Tag: sshfs_2_4~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ea0d68651e0f1822f9e4bb3bd9fecb642078d01a;p=platform%2Fupstream%2Fsshfs.git Fix typo in error message s/FD_CLOESEC/FD_CLOEXEC/ --- 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);