From 8d0c06039781aeefb14a96a26b01e7b31e1fbc4f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 10 Mar 2004 07:38:47 +0000 Subject: as a special case don't check the status of the create of \clients - there is a race condition in the create (This used to be commit ddfddcbffd304b5ac51140dee048ead7137e293a) --- source4/torture/nbench/nbio.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source4/torture/nbench') diff --git a/source4/torture/nbench/nbio.c b/source4/torture/nbench/nbio.c index 8a9c36f1d0..d42f719473 100644 --- a/source4/torture/nbench/nbio.c +++ b/source4/torture/nbench/nbio.c @@ -215,7 +215,9 @@ void nb_createx(const char *fname, talloc_destroy(mem_ctx); - check_status("NTCreateX", status, ret); + if (strcmp(fname, "\\clients") != 0) { + check_status("NTCreateX", status, ret); + } if (!NT_STATUS_IS_OK(ret)) return; -- cgit