From ee7264ac001b1ff4b2eb4b02cd566fb7fc137cb0 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Fri, 12 Nov 2010 16:18:17 +0100 Subject: [PATCH] Fix fuse_buf_copy_flags values Reported-by: Goswin von Brederlow --- include/fuse_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fuse_common.h b/include/fuse_common.h index 233a0b4..569c826 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -312,7 +312,7 @@ enum fuse_buf_copy_flags { * destination instead of copying. See documentation of * SPLICE_F_MOVE in splice(2) man page. */ - FUSE_BUF_SPLICE_MOVE = (1 << 2), + FUSE_BUF_SPLICE_MOVE = (1 << 3), /** * Don't block on the pipe when copying data with splice @@ -321,7 +321,7 @@ enum fuse_buf_copy_flags { * is full or empty). See SPLICE_F_NONBLOCK in the splice(2) * man page. */ - FUSE_BUF_SPLICE_NONBLOCK= (1 << 3), + FUSE_BUF_SPLICE_NONBLOCK= (1 << 4), }; /** -- 2.30.2