diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-09-30 20:03:52 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-09-30 20:03:52 +0000 |
commit | 0740785ee4ecd3edf07b0f311017ea00cb63698b (patch) | |
tree | 0a2275cb6cba352f1f4eeda8bfb1fc9f56c15210 /include/fuse.h | |
parent | 004a8c763ea66f91ed7a2a7ea9f28b4a16ba400c (diff) | |
download | libfuse-0740785ee4ecd3edf07b0f311017ea00cb63698b.tar.gz |
API changes
Diffstat (limited to 'include/fuse.h')
-rw-r--r-- | include/fuse.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/fuse.h b/include/fuse.h index 797f225..37aec28 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -376,7 +376,8 @@ struct fuse_operations { * for fcntl(2). The l_whence field will always be set to * SEEK_SET. * - * For checking lock ownership, the 'owner' argument must be used. + * For checking lock ownership, the 'fuse_file_info->owner' + * argument must be used. * * For F_GETLK operation, the library will first check currently * held locks, and if a conflicting lock is found it will return @@ -399,7 +400,7 @@ struct fuse_operations { * Introduced in version 2.6 */ int (*lock) (const char *, struct fuse_file_info *, int cmd, - struct flock *, uint64_t owner); + struct flock *); /** * Change the access and modification times of a file with |