From 0d6c19b976c45eaf801fb28b89db25ddb29d5826 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 11 Mar 2010 15:11:29 +0100 Subject: RPC-DSSYNC: handle DCERPC_FAULT_OP_RNG_ERROR as not supported for DsGetNT4ChangeLog() metze --- source4/torture/rpc/dssync.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/torture/rpc/dssync.c b/source4/torture/rpc/dssync.c index aeb4f2a282..3918bdd24d 100644 --- a/source4/torture/rpc/dssync.c +++ b/source4/torture/rpc/dssync.c @@ -1022,7 +1022,11 @@ static bool test_FetchNT4Data(struct torture_context *tctx, } else if (!NT_STATUS_IS_OK(status)) { const char *errstr = nt_errstr(status); if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) { - errstr = dcerpc_errstr(ctx, ctx->new_dc.drsuapi.drs_pipe->last_fault_code); + struct dcerpc_pipe *p = ctx->new_dc.drsuapi.drs_pipe; + if (p->last_fault_code == DCERPC_FAULT_OP_RNG_ERROR) { + torture_skip(tctx, "DsGetNT4ChangeLog not supported by target server"); + } + errstr = dcerpc_errstr(ctx, p->last_fault_code); } torture_fail(tctx, talloc_asprintf(tctx, "dcerpc_drsuapi_DsGetNT4ChangeLog failed - %s\n", -- cgit