aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@suse.cz>2010-11-12 16:18:17 +0100
committerMiklos Szeredi <mszeredi@suse.cz>2010-11-12 16:18:17 +0100
commitee7264ac001b1ff4b2eb4b02cd566fb7fc137cb0 (patch)
tree363b497370121e93f66007a6a77c6a0c97b1c90d /include
parent13a3d3636c8b94838f5ad470c03ca18bd07c7496 (diff)
downloadandroid_external_fuse-ee7264ac001b1ff4b2eb4b02cd566fb7fc137cb0.tar.gz
android_external_fuse-ee7264ac001b1ff4b2eb4b02cd566fb7fc137cb0.tar.bz2
android_external_fuse-ee7264ac001b1ff4b2eb4b02cd566fb7fc137cb0.zip
Fix fuse_buf_copy_flags values
Reported-by: Goswin von Brederlow <goswin-v-b@web.de>
Diffstat (limited to 'include')
-rw-r--r--include/fuse_common.h4
1 files 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),
};
/**