diff options
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/ntlmssp_wrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/ntlmssp_wrap.c b/source3/libsmb/ntlmssp_wrap.c index b90399c559..6f854f25cd 100644 --- a/source3/libsmb/ntlmssp_wrap.c +++ b/source3/libsmb/ntlmssp_wrap.c @@ -166,7 +166,7 @@ NTSTATUS auth_ntlmssp_update(struct auth_ntlmssp_state *ans, { NTSTATUS status; if (ans->gensec_security) { - return gensec_update(ans->gensec_security, mem_ctx, request, reply); + return gensec_update(ans->gensec_security, mem_ctx, NULL, request, reply); } status = ntlmssp_update(ans->ntlmssp_state, request, reply); if (!NT_STATUS_IS_OK(status) && !NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) { |