s3-auth remove auth_ntlmssp_start(), call auth_generic_start() directly
[mat/samba.git] / source3 / rpc_server / dcesrv_ntlmssp.c
index 9a471506a87043f4399e3685cbd92c27ed785797..a7ba58692bb4526977a95f55a2adc466dde741e3 100644 (file)
@@ -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;
        }