mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
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:
parent
9c7016f560
commit
273e9afcc8
@ -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
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user