Commit a87b55d9 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

secur32: Remove Kerberos SSPI stubs.

parent 6932541e
...@@ -9,7 +9,6 @@ C_SRCS = \ ...@@ -9,7 +9,6 @@ C_SRCS = \
base64_codec.c \ base64_codec.c \
dispatcher.c \ dispatcher.c \
hmac_md5.c \ hmac_md5.c \
kerberos.c \
lsa.c \ lsa.c \
negotiate.c \ negotiate.c \
ntlm.c \ ntlm.c \
......
...@@ -564,7 +564,8 @@ static void SECUR32_initializeProviders(void) ...@@ -564,7 +564,8 @@ static void SECUR32_initializeProviders(void)
/* First load built-in providers */ /* First load built-in providers */
SECUR32_initSchannelSP(); SECUR32_initSchannelSP();
SECUR32_initNTLMSP(); SECUR32_initNTLMSP();
SECUR32_initKerberosSP(); /* Load SSP/AP packages (Kerberos and others) */
load_auth_packages();
/* Load the Negotiate provider last so apps stumble over the working NTLM /* Load the Negotiate provider last so apps stumble over the working NTLM
* provider first. Attempting to fix bug #16905 while keeping the * provider first. Attempting to fix bug #16905 while keeping the
* application reported on wine-users on 2006-09-12 working. */ * application reported on wine-users on 2006-09-12 working. */
......
...@@ -136,7 +136,7 @@ PSTR SECUR32_AllocMultiByteFromWide(PCWSTR str) DECLSPEC_HIDDEN; ...@@ -136,7 +136,7 @@ PSTR SECUR32_AllocMultiByteFromWide(PCWSTR str) DECLSPEC_HIDDEN;
void SECUR32_initSchannelSP(void) DECLSPEC_HIDDEN; void SECUR32_initSchannelSP(void) DECLSPEC_HIDDEN;
void SECUR32_initNegotiateSP(void) DECLSPEC_HIDDEN; void SECUR32_initNegotiateSP(void) DECLSPEC_HIDDEN;
void SECUR32_initNTLMSP(void) DECLSPEC_HIDDEN; void SECUR32_initNTLMSP(void) DECLSPEC_HIDDEN;
void SECUR32_initKerberosSP(void) DECLSPEC_HIDDEN; void load_auth_packages(void) DECLSPEC_HIDDEN;
/* Cleanup functions for built-in providers */ /* Cleanup functions for built-in providers */
void SECUR32_deinitSchannelSP(void) DECLSPEC_HIDDEN; void SECUR32_deinitSchannelSP(void) DECLSPEC_HIDDEN;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment