sasl.c: Fix to avoid warnings introduced in commit d9ca9e9869

Applied a fix to avoid warnings on systems where Curl_ntlm_sspi_cleanup()
is just a nop.
This commit is contained in:
Steve Holme 2012-06-03 00:00:34 +01:00
parent 9c7016f560
commit 273e9afcc8
1 changed files with 2 additions and 1 deletions

View File

@ -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
}
}