diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-08 23:32:18 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:48:53 +0100 |
commit | fd88c3ca2480fabb90c0d8fc701394bb59f99481 (patch) | |
tree | 5b00876234b955b5378c223bcb202f1e4f3151ff /source4/auth | |
parent | 5f9aeca0d66c55896a0ab20cf73dda4ca4b22a39 (diff) | |
download | samba-fd88c3ca2480fabb90c0d8fc701394bb59f99481.tar.gz samba-fd88c3ca2480fabb90c0d8fc701394bb59f99481.tar.bz2 samba-fd88c3ca2480fabb90c0d8fc701394bb59f99481.zip |
r26348: Avoid use of autofree context.
(This used to be commit eebcf7e1b06ca48cc53bdd12efa01fcf0cff8aa3)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/auth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/auth/auth.c b/source4/auth/auth.c index 8e788ccca5..0068c3bde7 100644 --- a/source4/auth/auth.c +++ b/source4/auth/auth.c @@ -422,13 +422,13 @@ NTSTATUS auth_context_create(TALLOC_CTX *mem_ctx, const char **auth_methods = NULL; switch (lp_server_role(lp_ctx)) { case ROLE_STANDALONE: - auth_methods = lp_parm_string_list(lp_ctx, NULL, "auth methods", "standalone", NULL); + auth_methods = lp_parm_string_list(mem_ctx, lp_ctx, NULL, "auth methods", "standalone", NULL); break; case ROLE_DOMAIN_MEMBER: - auth_methods = lp_parm_string_list(lp_ctx, NULL, "auth methods", "member server", NULL); + auth_methods = lp_parm_string_list(mem_ctx, lp_ctx, NULL, "auth methods", "member server", NULL); break; case ROLE_DOMAIN_CONTROLLER: - auth_methods = lp_parm_string_list(lp_ctx, NULL, "auth methods", "domain controller", NULL); + auth_methods = lp_parm_string_list(mem_ctx, lp_ctx, NULL, "auth methods", "domain controller", NULL); break; } return auth_context_create_methods(mem_ctx, auth_methods, ev, msg, lp_ctx, auth_ctx); |