From: Steve Holme Date: Sun, 6 Apr 2014 13:21:46 +0000 (+0100) Subject: sasl: Fixed compilation warning in SSPI builds X-Git-Tag: curl-7_37_0~172 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2af28a147b16377cb308dca2e50c3349bc3ec638;p=thirdparty%2Fcurl.git sasl: Fixed compilation warning in SSPI builds warning: 'sasl_digest_get_key_value' defined but not used --- diff --git a/lib/curl_sasl.c b/lib/curl_sasl.c index 1968ccbc7f..8d7a771745 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 */