summaryrefslogtreecommitdiffstats
path: root/source4/auth/ntlm/auth.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-02-02 15:48:03 +0100
committerVolker Lendecke <vl@samba.org>2014-02-10 10:57:22 +0100
commit75d7c4609c1c743f84ca9f2d0666aece9e5200d4 (patch)
tree9b43d549bd71a99c1767b52ffef77441f4ab9f0a /source4/auth/ntlm/auth.c
parent1de725c2926b526200032c4f46132c17533986c7 (diff)
downloadsamba-75d7c4609c1c743f84ca9f2d0666aece9e5200d4.tar.gz
samba-75d7c4609c1c743f84ca9f2d0666aece9e5200d4.tar.xz
samba-75d7c4609c1c743f84ca9f2d0666aece9e5200d4.zip
auth4: auth_session_info_fill_unix only needs a tevent_context
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Kai Blin <kai@samba.org>
Diffstat (limited to 'source4/auth/ntlm/auth.c')
-rw-r--r--source4/auth/ntlm/auth.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/auth/ntlm/auth.c b/source4/auth/ntlm/auth.c
index 263dc8031d..a8c257f94a 100644
--- a/source4/auth/ntlm/auth.c
+++ b/source4/auth/ntlm/auth.c
@@ -469,7 +469,8 @@ static NTSTATUS auth_generate_session_info_wrapper(struct auth4_context *auth_co
DEBUG(1, ("Cannot contact winbind to provide unix token\n"));
return NT_STATUS_INVALID_SERVER_STATE;
}
- status = auth_session_info_fill_unix(wbc_ctx, auth_context->lp_ctx,
+ status = auth_session_info_fill_unix(wbc_ctx->event_ctx,
+ auth_context->lp_ctx,
original_user_name, *session_info);
if (!NT_STATUS_IS_OK(status)) {
TALLOC_FREE(*session_info);