From 4dbdaa6608b8d97b685906e52d6fee3af7bc07ea Mon Sep 17 00:00:00 2001 From: Björn Baumbach Date: Mon, 18 Jul 2011 13:15:49 +0200 Subject: s3-torture: run_locktest9(): replace cli_lock() with cli_lock32() Signed-off-by: Stefan Metzmacher --- source3/torture/torture.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index f565855768..17b1379d1a 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -2622,7 +2622,8 @@ static bool run_locktest9(int dummy) } /* Ensure the child has the lock. */ - if (cli_lock(cli1, fnum, 0, 4, 0, WRITE_LOCK)) { + status = cli_lock32(cli1, fnum, 0, 4, 0, WRITE_LOCK); + if (NT_STATUS_IS_OK(status)) { d_fprintf(stderr, "Got the lock on range 0:4 - this should not happen !\n"); goto fail; } else { @@ -2644,9 +2645,10 @@ static bool run_locktest9(int dummy) start = timeval_current(); - if (!cli_lock(cli1, fnum, 0, 4, -1, WRITE_LOCK)) { + status = cli_lock32(cli1, fnum, 0, 4, -1, WRITE_LOCK); + if (!NT_STATUS_IS_OK(status)) { d_fprintf(stderr, "Unable to apply write lock on range 0:4, error was " - "%s\n", cli_errstr(cli1)); + "%s\n", nt_errstr(status)); goto fail_nofd; } alarm(0); -- cgit