diff options
| author | Miklos Szeredi <miklos@szeredi.hu> | 2004-03-31 10:19:18 +0000 |
|---|---|---|
| committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-03-31 10:19:18 +0000 |
| commit | 03cebaef615f9098d030ba776c124fa5f27d5c74 (patch) | |
| tree | cf9f01b9200cbae03fd6d767ff4390f2738d5ec0 /include | |
| parent | 3ed84231ec6d4a66a5b20db355eb6e9585e9edc5 (diff) | |
| download | libfuse-03cebaef615f9098d030ba776c124fa5f27d5c74.tar.gz | |
fix zero size case for getxattr and listxattr
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/fuse.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index f641271..8467ed6 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -197,7 +197,11 @@ struct fuse_setxattr_in { unsigned int flags; }; -struct fuse_getlistxattr_in { +struct fuse_getxattr_in { + unsigned int size; +}; + +struct fuse_getxattr_out { unsigned int size; }; |
