From e813bf31d7b4ea4b39e227a66fec068f5fcd1a50 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Thu, 29 Jan 2009 20:32:27 +0000 Subject: Introduced curl_sspi.c and curl_sspi.h for the implementation of functions Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c Also adjusted socks_sspi.c to remove the link-time dependency on the Windows SSPI library using it now in the same way as it was done in http_ntlm.c. --- lib/easy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/easy.c') diff --git a/lib/easy.c b/lib/easy.c index 4bba1b461..c0670d519 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2008, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2009, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -111,7 +111,7 @@ static void win32_cleanup(void) WSACleanup(); #endif #ifdef USE_WINDOWS_SSPI - Curl_ntlm_global_cleanup(); + Curl_sspi_global_cleanup(); #endif } @@ -156,7 +156,7 @@ static CURLcode win32_init(void) #ifdef USE_WINDOWS_SSPI { - CURLcode err = Curl_ntlm_global_init(); + CURLcode err = Curl_sspi_global_init(); if (err != CURLE_OK) return err; } -- cgit v1.2.3