From eba5d0b64162c7250ad4869c3393d0d00aff868c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 7 Jul 2011 15:42:33 +0200 Subject: s3: Remove a use of cli_errstr Autobuild-User: Volker Lendecke Autobuild-Date: Thu Jul 7 18:04:26 CEST 2011 on sn-devel-104 --- source3/torture/torture.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 7e2a5e7beb..64f8bf77b6 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -642,8 +642,12 @@ static bool rw_torture3(struct cli_state *c, char *lockfname) if (procnum == 0) { - if (!NT_STATUS_IS_OK(cli_unlink(c, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN))) { - printf("unlink failed (%s) (normal, this file should not exist)\n", cli_errstr(c)); + status = cli_unlink( + c, lockfname, + FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN); + if (!NT_STATUS_IS_OK(status)) { + printf("unlink failed (%s) (normal, this file should " + "not exist)\n", nt_errstr(status)); } status = cli_open(c, lockfname, O_RDWR | O_CREAT | O_EXCL, -- cgit