summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-01-30 11:49:23 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-01-30 08:05:14 +0100
commitfc035afb6ecdb54e6183be511e886ac07727cc0b (patch)
tree5c5f525c88aa51ecf4d2e9e7b110ead1f275f8f4 /source4/auth
parenta647df4607cb6d916cd689f92cd27995ca0f9ab4 (diff)
downloadsamba-fc035afb6ecdb54e6183be511e886ac07727cc0b.tar.gz
samba-fc035afb6ecdb54e6183be511e886ac07727cc0b.tar.bz2
samba-fc035afb6ecdb54e6183be511e886ac07727cc0b.zip
s4-auth: Return NT_STATUS_NOT_IMPLEMENTED if the challenge cannot be obtained
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/ntlmssp/ntlmssp_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/ntlmssp/ntlmssp_server.c b/source4/auth/ntlmssp/ntlmssp_server.c
index 1a876e319f..3d66a0b689 100644
--- a/source4/auth/ntlmssp/ntlmssp_server.c
+++ b/source4/auth/ntlmssp/ntlmssp_server.c
@@ -101,7 +101,7 @@ static NTSTATUS auth_ntlmssp_get_challenge(const struct ntlmssp_state *ntlmssp_s
}
}
- return NT_STATUS_OK;
+ return status;
}
/**