diff options
author | Jeremy Allison <jra@samba.org> | 2006-06-28 18:16:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:19:04 -0500 |
commit | 8322d26276a63c2909ed4835693fae5ac4349f74 (patch) | |
tree | 8d461768e49c6abd9de2472a10fd7a37a89ff76f | |
parent | 9e13d35092a9b2caee3448bd9f11c1b82dd9d6d2 (diff) | |
download | samba-8322d26276a63c2909ed4835693fae5ac4349f74.tar.gz samba-8322d26276a63c2909ed4835693fae5ac4349f74.tar.bz2 samba-8322d26276a63c2909ed4835693fae5ac4349f74.zip |
r16632: Fix bug #3882 reported by jason@ncac.gwu.edu.
Jeremy.
(This used to be commit 6b39f53e43572fe29fc037a36328387a0b1bb423)
-rw-r--r-- | source3/auth/auth_ntlmssp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_ntlmssp.c b/source3/auth/auth_ntlmssp.c index 7607107548..6cf987a48b 100644 --- a/source3/auth/auth_ntlmssp.c +++ b/source3/auth/auth_ntlmssp.c @@ -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; } |