diff options
author | Michael Adam <obnox@samba.org> | 2012-08-08 11:57:33 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-08-09 15:26:07 +0200 |
commit | 5138eb50a3f9fb1b6dc3f49a80f86c92698c4293 (patch) | |
tree | ac0554cbb23a8c9b68b30a835f3f014f405be059 /source3/torture | |
parent | 5bc7c77cd88b5fc96427584da020a3abe930f214 (diff) | |
download | samba-5138eb50a3f9fb1b6dc3f49a80f86c92698c4293.tar.gz samba-5138eb50a3f9fb1b6dc3f49a80f86c92698c4293.tar.bz2 samba-5138eb50a3f9fb1b6dc3f49a80f86c92698c4293.zip |
s3:torture:delete: untangle function call from result check
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index b1d670e04d..e8051506c7 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -4122,7 +4122,7 @@ static bool run_deletetest(int dummy) status = cli_close(cli1, fnum1); if (!NT_STATUS_IS_OK(status)) { - printf("[6] close - 2 failed (%s)\n", nt_errstr(status)); + printf("[6] close failed (%s)\n", nt_errstr(status)); correct = False; goto fail; } |