mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
s3-libsmb: remove unused cli_lock()
Replaced with cli_lock32() Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Jul 19 00:43:03 CEST 2011 on sn-devel-104
This commit is contained in:
parent
d29f8491bd
commit
2052c2d6fa
@ -2591,22 +2591,6 @@ NTSTATUS cli_lock32(struct cli_state *cli, uint16_t fnum,
|
||||
return status;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
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.
|
||||
****************************************************************************/
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user