From: Steve Holme Date: Thu, 14 Aug 2014 15:02:02 +0000 (+0100) Subject: curl_sasl_sspi.c: Fixed more compilation warnings from commit 4b491c675f X-Git-Tag: curl-7_38_0~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=629f52843f4bf5f1cf0bbc48b6d3cc2f9d0de1e8;p=thirdparty%2Fcurl.git curl_sasl_sspi.c: Fixed more compilation warnings from commit 4b491c675f warning: unused variable 'resp' warning: no previous prototype for 'Curl_sasl_gssapi_cleanup' --- diff --git a/lib/curl_sasl_sspi.c b/lib/curl_sasl_sspi.c index 6fd6c88c7d..9a7eee744a 100644 --- a/lib/curl_sasl_sspi.c +++ b/lib/curl_sasl_sspi.c @@ -44,6 +44,8 @@ /* The last #include file should be: */ #include "memdebug.h" +void Curl_sasl_gssapi_cleanup(struct kerberos5data *krb5); + /* * Curl_sasl_build_spn() * @@ -303,7 +305,6 @@ CURLcode Curl_sasl_create_gssapi_user_message(struct SessionHandle *data, CURLcode result = CURLE_OK; size_t chlglen = 0; unsigned char *chlg = NULL; - unsigned char *resp = NULL; CtxtHandle context; PSecPkgInfo SecurityPackage; SecBuffer chlg_buf;