diff options
-rw-r--r-- | source3/torture/pdbtest.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/torture/pdbtest.c b/source3/torture/pdbtest.c index 71b5c61fc58..64bc45e6a7c 100644 --- a/source3/torture/pdbtest.c +++ b/source3/torture/pdbtest.c @@ -526,6 +526,13 @@ static bool test_trusted_domains(TALLOC_CTX *ctx, *error = true; } + rv = pdb->del_trusted_domain(pdb, TRUST_DOM); + if (!NT_STATUS_IS_OK(rv)) { + fprintf(stderr, "Error in del_trusted_domain %s\n", + get_friendly_nt_error_msg(rv)); + *error = true; + } + return true; } |