diff options
Diffstat (limited to 'source4/torture/auth/ntlmssp.c')
-rw-r--r-- | source4/torture/auth/ntlmssp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/torture/auth/ntlmssp.c b/source4/torture/auth/ntlmssp.c index 5c75a5b028..978610ec51 100644 --- a/source4/torture/auth/ntlmssp.c +++ b/source4/torture/auth/ntlmssp.c @@ -23,7 +23,6 @@ #include "auth/ntlmssp/ntlmssp.h" #include "lib/cmdline/popt_common.h" #include "torture/torture.h" -#include "torture/ui.h" static BOOL torture_ntlmssp_self_check(struct torture_context *test, const void *_data) @@ -129,12 +128,13 @@ static BOOL torture_ntlmssp_self_check(struct torture_context *test, return True; } -BOOL torture_ntlmssp(struct torture_context *torture) +struct torture_suite *torture_ntlmssp(TALLOC_CTX *mem_ctx) { - struct torture_suite *suite = torture_suite_create(torture, "AUTH-NTLMSSP"); + struct torture_suite *suite = torture_suite_create(mem_ctx, + "LOCAL-NTLMSSP"); torture_suite_add_simple_tcase(suite, "NTLMSSP self check", torture_ntlmssp_self_check, NULL); - return torture_run_suite(torture, suite); + return suite; } |