summaryrefslogtreecommitdiffstats
path: root/source/auth
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-06-28 18:16:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:19:04 -0500
commit6b39f53e43572fe29fc037a36328387a0b1bb423 (patch)
tree6a57e2a9518fa3e1a1fcc35ce5ba1296d8cf1195 /source/auth
parentec0a47b94c12b64d351ca8e6bdd467578528f3da (diff)
downloadsamba-6b39f53e43572fe29fc037a36328387a0b1bb423.tar.gz
samba-6b39f53e43572fe29fc037a36328387a0b1bb423.tar.xz
samba-6b39f53e43572fe29fc037a36328387a0b1bb423.zip
r16632: Fix bug #3882 reported by jason@ncac.gwu.edu.
Jeremy.
Diffstat (limited to 'source/auth')
-rw-r--r--source/auth/auth_ntlmssp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth/auth_ntlmssp.c b/source/auth/auth_ntlmssp.c
index 76071075483..6cf987a48b1 100644
--- a/source/auth/auth_ntlmssp.c
+++ b/source/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;
}