1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r1439: Once we are authenticated, always return NT_STATUS_OK. (Makes SPENGO

easier to code, as it may return an 'ok' with an empty blob).

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 2004-07-11 10:26:50 +00:00 committed by Gerald (Jerry) Carter
parent 06b997c826
commit e48557158e

View File

@ -228,7 +228,7 @@ NTSTATUS ntlmssp_update(struct ntlmssp_state *ntlmssp_state,
*out = data_blob(NULL, 0);
if (ntlmssp_state->expected_state == NTLMSSP_DONE) {
return NT_STATUS_INVALID_PARAMETER;
return NT_STATUS_OK;
}
if (!out_mem_ctx) {