From 09879ff119838535a9c5daeb33f62c126b76fe25 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 23 Feb 2005 15:08:41 +0000 Subject: r5516: NT4 doesn't support GetPrinterDataEx() metze (This used to be commit 81f4afcbfa296f54634ba2a88e9ef3e966405fc3) --- source4/torture/rpc/spoolss.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/torture/rpc/spoolss.c b/source4/torture/rpc/spoolss.c index c7a0a1e066..18b9e23b75 100644 --- a/source4/torture/rpc/spoolss.c +++ b/source4/torture/rpc/spoolss.c @@ -482,8 +482,12 @@ static BOOL test_GetPrinterDataEx(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, printf("Testing GetPrinterDataEx\n"); status = dcerpc_spoolss_GetPrinterDataEx(p, mem_ctx, &r); - if (!NT_STATUS_IS_OK(status)) { + if (NT_STATUS_EQUAL(status,NT_STATUS_NET_WRITE_FAULT) && + p->last_fault_code == DCERPC_FAULT_OP_RNG_ERROR) { + printf("GetPrinterDataEx not supported by server\n"); + return True; + } printf("GetPrinterDataEx failed - %s\n", nt_errstr(status)); return False; } -- cgit