diff options
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/clifile.c | 16 | ||||
-rw-r--r-- | source3/libsmb/proto.h | 2 |
2 files changed, 0 insertions, 18 deletions
diff --git a/source3/libsmb/clifile.c b/source3/libsmb/clifile.c index a5be74803c..8cf60ded81 100644 --- a/source3/libsmb/clifile.c +++ b/source3/libsmb/clifile.c @@ -2592,22 +2592,6 @@ NTSTATUS cli_lock32(struct cli_state *cli, uint16_t fnum, } /**************************************************************************** - Lock a file. - note that timeout is in units of 2 milliseconds -****************************************************************************/ - -bool cli_lock(struct cli_state *cli, uint16_t fnum, - uint32_t offset, uint32_t len, int timeout, - enum brl_type lock_type) -{ - NTSTATUS status; - - status = cli_locktype(cli, fnum, offset, len, timeout, - (lock_type == READ_LOCK? 1 : 0)); - return NT_STATUS_IS_OK(status); -} - -/**************************************************************************** Unlock a file. ****************************************************************************/ diff --git a/source3/libsmb/proto.h b/source3/libsmb/proto.h index 0029db13e2..070b4b1af1 100644 --- a/source3/libsmb/proto.h +++ b/source3/libsmb/proto.h @@ -388,8 +388,6 @@ NTSTATUS cli_ftruncate(struct cli_state *cli, uint16_t fnum, uint64_t size); NTSTATUS cli_locktype(struct cli_state *cli, uint16_t fnum, uint32_t offset, uint32_t len, int timeout, unsigned char locktype); -bool cli_lock(struct cli_state *cli, uint16_t fnum, - uint32_t offset, uint32_t len, int timeout, enum brl_type lock_type); NTSTATUS cli_lock32(struct cli_state *cli, uint16_t fnum, uint32_t offset, uint32_t len, int timeout, enum brl_type lock_type); struct tevent_req *cli_unlock_send(TALLOC_CTX *mem_ctx, |