mirror of
https://github.com/curl/curl.git
synced 2026-06-01 22:14:17 +03: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
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue