summaryrefslogtreecommitdiff
path: root/source4/libcli/auth/ntlmssp.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-07-11 10:26:50 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:56 -0500
commit43e7d4109f144e20d661fe0559cb47708b511978 (patch)
tree4c454fe8c0a2d444b6d0c2c4a928f9e9fd9cf182 /source4/libcli/auth/ntlmssp.c
parent47fc62a097b0529657114f77f89858ad7fb52528 (diff)
downloadsamba-43e7d4109f144e20d661fe0559cb47708b511978.tar.gz
samba-43e7d4109f144e20d661fe0559cb47708b511978.tar.bz2
samba-43e7d4109f144e20d661fe0559cb47708b511978.zip
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 used to be commit e48557158ed99eee7d3ef8231c629bbd14cda9d3)
Diffstat (limited to 'source4/libcli/auth/ntlmssp.c')
-rw-r--r--source4/libcli/auth/ntlmssp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/auth/ntlmssp.c b/source4/libcli/auth/ntlmssp.c
index 6830db3f90..3c656f4e9e 100644
--- a/source4/libcli/auth/ntlmssp.c
+++ b/source4/libcli/auth/ntlmssp.c
@@ -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) {