summaryrefslogtreecommitdiff
path: root/source3/rpc_server
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-12-16 16:38:53 +1100
committerStefan Metzmacher <metze@samba.org>2011-12-22 19:25:10 +0100
commitc17131685cc7febea6f09c7029c26e9993f8bc91 (patch)
treeff1b1eeff6ea82ee756a6f61265c569cb038832b /source3/rpc_server
parent1100f6eca568bdf725922eff09988559d2714e45 (diff)
downloadsamba-c17131685cc7febea6f09c7029c26e9993f8bc91.tar.gz
samba-c17131685cc7febea6f09c7029c26e9993f8bc91.tar.bz2
samba-c17131685cc7febea6f09c7029c26e9993f8bc91.zip
s3-auth remove auth_ntlmssp_start(), call auth_generic_start() directly
This makes it clear that this can support more than just NTLMSSP. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/rpc_server')
-rw-r--r--source3/rpc_server/dcesrv_ntlmssp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_server/dcesrv_ntlmssp.c b/source3/rpc_server/dcesrv_ntlmssp.c
index 9a471506a8..a7ba58692b 100644
--- a/source3/rpc_server/dcesrv_ntlmssp.c
+++ b/source3/rpc_server/dcesrv_ntlmssp.c
@@ -57,9 +57,9 @@ NTSTATUS ntlmssp_server_auth_start(TALLOC_CTX *mem_ctx,
gensec_want_feature(a->gensec_security, GENSEC_FEATURE_DCE_STYLE);
}
- status = auth_ntlmssp_start(a);
+ status = auth_generic_start(a, GENSEC_OID_NTLMSSP);
if (!NT_STATUS_IS_OK(status)) {
- DEBUG(0, (__location__ ": auth_ntlmssp_start failed: %s\n",
+ DEBUG(0, (__location__ ": auth_generic_start failed: %s\n",
nt_errstr(status)));
return status;
}