From 273e9afcc8f42b549ed5bd06e902675045d6fa87 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sun, 3 Jun 2012 00:00:34 +0100 Subject: sasl.c: Fix to avoid warnings introduced in commit d9ca9e9869e8 Applied a fix to avoid warnings on systems where Curl_ntlm_sspi_cleanup() is just a nop. --- lib/curl_sasl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/curl_sasl.c b/lib/curl_sasl.c index e9a3c18d6..1725af86e 100644 --- a/lib/curl_sasl.c +++ b/lib/curl_sasl.c @@ -199,9 +199,10 @@ void Curl_sasl_cleanup(struct connectdata *conn, unsigned int authused) if(authused == SASL_AUTH_NTLM) { Curl_ntlm_sspi_cleanup(&conn->ntlm); } + (void)conn; #else /* Reserved for future use */ (void)conn; (void)authused; #endif -} \ No newline at end of file +} -- cgit v1.2.3