diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-11-06 13:27:30 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-11-06 13:32:04 +0000 |
commit | 6d45f952e6c61695a1aa6b17d2103442a049e883 (patch) | |
tree | 51be75579f63ca74c9c08188c1c58f9c8dcd8d31 | |
parent | 3aa0e57ce680bfa4dc3c11b174f37cc277959059 (diff) |
sasl_sspi: Fixed compilation warning from commit 2d2a62e3d9
Added void reference to unused 'data' parameter back to fix compilation
warning.
-rw-r--r-- | lib/curl_sasl_sspi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/curl_sasl_sspi.c b/lib/curl_sasl_sspi.c index 0903601fa..ec3f2ca8c 100644 --- a/lib/curl_sasl_sspi.c +++ b/lib/curl_sasl_sspi.c @@ -343,6 +343,8 @@ CURLcode Curl_sasl_create_digest_http_message(struct SessionHandle *data, unsigned long attrs; TimeStamp expiry; /* For Windows 9x compatibility of SSPI calls */ + (void) data; + /* Query the security package for DigestSSP */ status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_DIGEST), &SecurityPackage); |