diff options
-rw-r--r-- | source4/torture/rpc/spoolss.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/torture/rpc/spoolss.c b/source4/torture/rpc/spoolss.c index 54101e77dc..ec7233516c 100644 --- a/source4/torture/rpc/spoolss.c +++ b/source4/torture/rpc/spoolss.c @@ -1672,6 +1672,10 @@ static bool test_PrinterInfo_SDs(struct torture_context *tctx, torture_assert(tctx, test_GetPrinter_level(tctx, p, handle, 2, &info), ""); sd2 = info.info2.secdesc; + if (sd1->type & SEC_DESC_DACL_DEFAULTED) { + torture_comment(tctx, "removing SEC_DESC_DACL_DEFAULTED\n"); + sd1->type &= ~SEC_DESC_DACL_DEFAULTED; + } torture_assert(tctx, test_security_descriptor_equal(tctx, sd1, sd2), ""); |