From 279bf89fb37cc4d2a4b514301bc5bdb61ca48740 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 15 Apr 2010 17:22:41 +0200 Subject: s4:torture/rpc/countcalls: check for NT_STATUS_IS_RPC() instead of NT_STATUS_NET_WRITE_FAULT metze --- source4/torture/rpc/countcalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/torture/rpc/countcalls.c b/source4/torture/rpc/countcalls.c index 5857af68dd..7d3c9d7b86 100644 --- a/source4/torture/rpc/countcalls.c +++ b/source4/torture/rpc/countcalls.c @@ -38,7 +38,7 @@ bool count_calls(struct torture_context *tctx, int i; NTSTATUS status = torture_rpc_connection(tctx, &p, iface); if (NT_STATUS_EQUAL(NT_STATUS_OBJECT_NAME_NOT_FOUND, status) - || NT_STATUS_EQUAL(NT_STATUS_NET_WRITE_FAULT, status) + || NT_STATUS_IS_RPC(status) || NT_STATUS_EQUAL(NT_STATUS_PORT_UNREACHABLE, status) || NT_STATUS_EQUAL(NT_STATUS_ACCESS_DENIED, status)) { if (all) { -- cgit