1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-10 12:58:35 +03:00

r16632: Fix bug #3882 reported by jason@ncac.gwu.edu.

Jeremy.
(This used to be commit 6b39f53e43572fe29fc037a36328387a0b1bb423)
This commit is contained in:
Jeremy Allison 2006-06-28 18:16:33 +00:00 committed by Gerald (Jerry) Carter
parent 9e13d35092
commit 8322d26276

View File

@ -176,7 +176,7 @@ NTSTATUS auth_ntlmssp_start(AUTH_NTLMSSP_STATE **auth_ntlmssp_state)
(*auth_ntlmssp_state)->ntlmssp_state->may_set_challenge = auth_ntlmssp_may_set_challenge;
(*auth_ntlmssp_state)->ntlmssp_state->set_challenge = auth_ntlmssp_set_challenge;
(*auth_ntlmssp_state)->ntlmssp_state->check_password = auth_ntlmssp_check_password;
(*auth_ntlmssp_state)->ntlmssp_state->server_role = lp_server_role();
(*auth_ntlmssp_state)->ntlmssp_state->server_role = (enum server_types)lp_server_role();
return NT_STATUS_OK;
}