1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-21 03:33:16 +03:00

r26221: Add loadparm_context parameter to auth_context_create.

This commit is contained in:
Jelmer Vernooij
2007-12-02 16:20:18 +01:00
committed by Stefan Metzmacher
parent 92dcc85e3a
commit a9a9634df8
8 changed files with 14 additions and 5 deletions

View File

@@ -62,7 +62,7 @@ static int ejs_doauth(MprVarHandle eid,
if (auth_types) {
nt_status = auth_context_create_methods(tmp_ctx, auth_types, ev, msg, &auth_context);
} else {
nt_status = auth_context_create(tmp_ctx, ev, msg, &auth_context);
nt_status = auth_context_create(tmp_ctx, ev, msg, global_loadparm, &auth_context);
}
if (!NT_STATUS_IS_OK(nt_status)) {
mprSetPropertyValue(auth, "result", mprCreateBoolVar(false));