diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-04-06 14:21:46 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-04-06 16:01:55 +0100 |
commit | 2af28a147b16377cb308dca2e50c3349bc3ec638 (patch) | |
tree | 8f80c2acbccce1caa1a87ce1068c8d61c25e6dc1 | |
parent | f700eb7d9a7b1947b8466b2a3c325d5fbaaee2a2 (diff) |
sasl: Fixed compilation warning in SSPI builds
warning: 'sasl_digest_get_key_value' defined but not used
-rw-r--r-- | lib/curl_sasl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_sasl.c b/lib/curl_sasl.c index 1968ccbc7..8d7a77174 100644 --- a/lib/curl_sasl.c +++ b/lib/curl_sasl.c @@ -51,7 +51,7 @@ /* The last #include file should be: */ #include "memdebug.h" -#ifndef CURL_DISABLE_CRYPTO_AUTH +#if !defined(CURL_DISABLE_CRYPTO_AUTH) && !defined(USE_WINDOWS_SSPI) /* Retrieves the value for a corresponding key from the challenge string * returns TRUE if the key could be found, FALSE if it does not exists */ |