-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- a/misc/fuse2fs.c | ||
+++ b/misc/fuse2fs.c | ||
@@ -2441,7 +2441,7 @@ | ||
#undef XATTR_TRANSLATOR | ||
|
||
static int op_getxattr(const char *path, const char *key, char *value, | ||
- size_t len) | ||
+ size_t len, uint32_t position EXT2FS_ATTR((unused))) | ||
{ | ||
struct fuse_context *ctxt = fuse_get_context(); | ||
struct fuse2fs *ff = (struct fuse2fs *)ctxt->private_data; | ||
@@ -2623,7 +2623,7 @@ | ||
|
||
static int op_setxattr(const char *path EXT2FS_ATTR((unused)), | ||
const char *key, const char *value, | ||
- size_t len, int flags EXT2FS_ATTR((unused))) | ||
+ size_t len, int flags EXT2FS_ATTR((unused)), uint32_t position EXT2FS_ATTR((unused))) | ||
{ | ||
struct fuse_context *ctxt = fuse_get_context(); | ||
struct fuse2fs *ff = (struct fuse2fs *)ctxt->private_data; |