diff options
author | Abhidnya P Chirmule <achirmul@in.ibm.com> | 2009-10-06 17:14:56 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-10-06 18:52:06 +0200 |
commit | ac774c49691b08fa90121d5bd008618cfd4405e7 (patch) | |
tree | 0072e321869ed910c619d65ff57c0b59ee9956d6 /source3/lib | |
parent | c344bf0184be484fff8bb5ed93b5c2ca6de58611 (diff) | |
download | samba-ac774c49691b08fa90121d5bd008618cfd4405e7.tar.gz samba-ac774c49691b08fa90121d5bd008618cfd4405e7.tar.bz2 samba-ac774c49691b08fa90121d5bd008618cfd4405e7.zip |
s3: Add access_mask to the flock VFS call
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index 2c6894ff94..f9cd4a2355 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -702,7 +702,7 @@ FILE *sys_fopen(const char *path, const char *type) A flock() wrapper that will perform the kernel flock. ********************************************************************/ -void kernel_flock(int fd, uint32 share_mode) +void kernel_flock(int fd, uint32 share_mode, uint32 access_mask) { #if HAVE_KERNEL_SHARE_MODES int kernel_mode = 0; |