diff options
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/schannel.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/torture/rpc/schannel.c b/source4/torture/rpc/schannel.c index e120c0d2ad..f6c94b145a 100644 --- a/source4/torture/rpc/schannel.c +++ b/source4/torture/rpc/schannel.c @@ -92,7 +92,10 @@ static BOOL test_schannel(TALLOC_CTX *mem_ctx, goto failed; } - test_samr_ops(p, mem_ctx); + if (!test_samr_ops(p, mem_ctx)) { + printf("Failed to process schannel secured ops\n"); + goto failed; + } torture_leave_domain(join_ctx); return True; |