diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-12-13 19:56:13 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-03-27 00:36:32 +0100 |
commit | 2103c373b44871810197fa8e423f55a659a8b89d (patch) | |
tree | 9a4d00a7b35b21fc9ddf9a9a667b3e5255019de0 /source3/utils/ntlm_auth.c | |
parent | 01575faf678d4280733c2a4c657e370b9b847b69 (diff) | |
download | samba-2103c373b44871810197fa8e423f55a659a8b89d.tar.gz samba-2103c373b44871810197fa8e423f55a659a8b89d.tar.xz samba-2103c373b44871810197fa8e423f55a659a8b89d.zip |
auth/gensec: remove tevent_context argument from gensec_update()
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/utils/ntlm_auth.c')
-rw-r--r-- | source3/utils/ntlm_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index 1df615c1e7..f0cd24bf58 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -1631,7 +1631,7 @@ static void manage_gensec_request(enum stdio_helper_mode stdio_helper_mode, return; } - nt_status = gensec_update(state->gensec_state, mem_ctx, NULL, in, &out); + nt_status = gensec_update(state->gensec_state, mem_ctx, in, &out); /* don't leak 'bad password'/'no such user' info to the network client */ nt_status = nt_status_squash(nt_status); |