From: Miklos Szeredi Date: Fri, 12 Nov 2010 15:18:17 +0000 (+0100) Subject: Fix fuse_buf_copy_flags values X-Git-Tag: fuse_2_9_0~81 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ee7264ac001b1ff4b2eb4b02cd566fb7fc137cb0;p=qemu-gpiodev%2Flibfuse.git Fix fuse_buf_copy_flags values Reported-by: Goswin von Brederlow --- 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), }; /**