diff options
-rw-r--r-- | source4/torture/rpc/samr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c index aa13acf444..6327985b41 100644 --- a/source4/torture/rpc/samr.c +++ b/source4/torture/rpc/samr.c @@ -6012,7 +6012,9 @@ bool torture_rpc_samr_users(struct torture_context *torture) ret &= test_Connect(p, torture, &handle); - ret &= test_QuerySecurity(p, torture, &handle); + if (!torture_setting_bool(torture, "samba3", false)) { + ret &= test_QuerySecurity(p, torture, &handle); + } ret &= test_EnumDomains(p, torture, &handle, TORTURE_SAMR_USER_ATTRIBUTES, NULL); |