summaryrefslogtreecommitdiff
path: root/lib/curl_sspi.c
diff options
context:
space:
mode:
authornikita <nikita@NetBSD.org>2020-09-14 20:51:07 +0200
committernikita <nikita@NetBSD.org>2020-09-14 20:51:07 +0200
commit0ab4932bcf864e45dc72e59db0f785c5c6c4f6a4 (patch)
tree46b860affbd181a0dbb263aa4cca9955c47ef40c /lib/curl_sspi.c
parentea5627408e41592ac8750032de41b97038811d88 (diff)
parent9d954e49bce3706a9a2efb119ecd05767f0f2a9e (diff)
downloadgnurl-0ab4932bcf864e45dc72e59db0f785c5c6c4f6a4.tar.gz
gnurl-0ab4932bcf864e45dc72e59db0f785c5c6c4f6a4.tar.bz2
gnurl-0ab4932bcf864e45dc72e59db0f785c5c6c4f6a4.zip
Merge tag 'curl-7_72_0' into master
curl 7.72.0
Diffstat (limited to 'lib/curl_sspi.c')
-rw-r--r--lib/curl_sspi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/curl_sspi.c b/lib/curl_sspi.c
index d5fcfa0e1..4b93e1ad3 100644
--- a/lib/curl_sspi.c
+++ b/lib/curl_sspi.c
@@ -28,6 +28,7 @@
#include "curl_sspi.h"
#include "curl_multibyte.h"
#include "system_win32.h"
+#include "version_win32.h"
#include "warnless.h"
/* The last #include files should be: */
@@ -82,7 +83,7 @@ CURLcode Curl_sspi_global_init(void)
* have both these DLLs (security.dll forwards calls to secur32.dll) */
/* Load SSPI dll into the address space of the calling process */
- if(Curl_verify_windows_version(4, 0, PLATFORM_WINNT, VERSION_EQUAL))
+ if(curlx_verify_windows_version(4, 0, PLATFORM_WINNT, VERSION_EQUAL))
s_hSecDll = Curl_load_library(TEXT("security.dll"));
else
s_hSecDll = Curl_load_library(TEXT("secur32.dll"));