From 57194d8c5d47133c9145e6ed2b51f4e18f8bd1ec Mon Sep 17 00:00:00 2001 From: Björn Baumbach Date: Mon, 11 Jul 2011 11:13:18 +0200 Subject: s3-libsmb: introduce cli_lock32() Same like cli_lock() but return NTSTATUS instead of bool Signed-off-by: Stefan Metzmacher --- source3/libsmb/proto.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/libsmb/proto.h') diff --git a/source3/libsmb/proto.h b/source3/libsmb/proto.h index 2883af2fad..906852e94f 100644 --- a/source3/libsmb/proto.h +++ b/source3/libsmb/proto.h @@ -390,6 +390,8 @@ NTSTATUS cli_locktype(struct cli_state *cli, uint16_t fnum, 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, struct event_context *ev, struct cli_state *cli, -- cgit