diff options
author | Mark Salisbury <mark.salisbury@hp.com> | 2012-06-15 18:05:11 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-06-15 18:41:49 +0200 |
commit | 46480bb9a1569eaf156012f33e3e7e8c3de18f87 (patch) | |
tree | 28c6ee9e5b39119260f0691ecb765e771f7fed72 /lib/curl_sspi.h | |
parent | 16c725dbc77b408d5b3c2b2d213063f7c2398c06 (diff) | |
download | curl-46480bb9a1569eaf156012f33e3e7e8c3de18f87.tar.gz |
SSPI related code: Unicode support for WinCE
SSPI related code now compiles with ANSI and WCHAR versions of security
methods (WinCE requires WCHAR versions of methods).
Pulled UTF8 to WCHAR conversion methods out of idn_win32.c into their own file.
curl_sasl.c - include curl_memory.h to use correct memory functions.
getenv.c and telnet.c - WinCE compatibility fix
With some committer adjustments
Diffstat (limited to 'lib/curl_sspi.h')
-rw-r--r-- | lib/curl_sspi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_sspi.h b/lib/curl_sspi.h index 4e7d4cfe6..c3e6d9760 100644 --- a/lib/curl_sspi.h +++ b/lib/curl_sspi.h @@ -46,7 +46,7 @@ void Curl_sspi_global_cleanup(void); /* Forward-declaration of global variables defined in curl_sspi.c */ extern HMODULE s_hSecDll; -extern PSecurityFunctionTableA s_pSecFn; +extern PSecurityFunctionTable s_pSecFn; /* Provide some definitions missing in old headers */ |