diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-11 15:10:36 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-11 15:10:36 +0000 |
commit | 84bc23b92f3e22722b965ae460ca8d3413293d3b (patch) | |
tree | 36f86547e18679039fee3da17480b5ca19121888 /lib | |
parent | d90472dd645429d0b016f0b30dcf889a25aa1240 (diff) |
curl_version_info() returns the feature bit CURL_VERSION_SSPI
Diffstat (limited to 'lib')
-rw-r--r-- | lib/version.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/version.c b/lib/version.c index e82eacf59..34741bb2b 100644 --- a/lib/version.c +++ b/lib/version.c @@ -196,7 +196,10 @@ static curl_version_info_data version_info = { | CURL_VERSION_SSL #endif #if defined(USE_SSLEAY) || defined(USE_WINDOWS_SSPI) - | CURL_VERSION_NTLM /* since this requires OpenSSL */ + | CURL_VERSION_NTLM +#endif +#ifdef USE_WINDOWS_SSPI + | CURL_VERSION_SSPI #endif #ifdef HAVE_LIBZ | CURL_VERSION_LIBZ |