summaryrefslogtreecommitdiff
path: root/sys/miscfs/fuse
diff options
context:
space:
mode:
Diffstat (limited to 'sys/miscfs/fuse')
-rw-r--r--sys/miscfs/fuse/fuse_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/fuse/fuse_file.c b/sys/miscfs/fuse/fuse_file.c
index ffee977f079..f91696ffd77 100644
--- a/sys/miscfs/fuse/fuse_file.c
+++ b/sys/miscfs/fuse/fuse_file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fuse_file.c,v 1.6 2013/12/03 09:32:23 syl Exp $ */
+/* $OpenBSD: fuse_file.c,v 1.7 2014/01/20 15:26:52 syl Exp $ */
/*
* Copyright (c) 2012-2013 Sylvestre Gallon <ccna.syl@gmail.com>
*
@@ -64,7 +64,7 @@ fusefs_file_close(struct fusefs_mnt *fmp, struct fusefs_node * ip,
fbuf->fb_io_flags = flags;
error = fb_queue(fmp->dev, fbuf);
- if (error)
+ if (error && (error != ENOSYS))
printf("fusefs: file error %d\n", error);
fb_delete(fbuf);