diff options
author | Jeremy Allison <jra@samba.org> | 2000-04-28 00:39:23 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-04-28 00:39:23 +0000 |
commit | be828fcec88a43306ddfb53473fda52df1d9965b (patch) | |
tree | be135e05820e0d70e8deefe01a7ba306ec2ce4b7 /source3/include | |
parent | 4b60a33c6fa733060068e192b87c2e858103d6eb (diff) | |
download | samba-be828fcec88a43306ddfb53473fda52df1d9965b.tar.gz samba-be828fcec88a43306ddfb53473fda52df1d9965b.tar.bz2 samba-be828fcec88a43306ddfb53473fda52df1d9965b.zip |
Made changes suggested by Andrew review.
fd_close now calls fd_close_posix() directly.
set_posix_lock/release_posix_lock() now handle the reference counting.
More changes due when this gets moved to the file locking/posix.c
Jeremy.
(This used to be commit 239abd48f049c6a8d2bbc0636eacf347ab77588c)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 8c6fcd56b7..f9479532fa 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -831,7 +831,7 @@ int brl_forall(BRLOCK_FN(fn)); /*The following definitions come from locking/locking.c */ -BOOL fd_close_posix_locks(struct connection_struct *conn, files_struct *fsp); +int fd_close_posix(struct connection_struct *conn, files_struct *fsp); BOOL is_locked(files_struct *fsp,connection_struct *conn, SMB_BIG_UINT count,SMB_BIG_UINT offset, enum brl_type lock_type); |