schannel: fix unused parameter warnings

This commit is contained in:
Yang Tse 2012-06-14 12:12:54 +02:00
parent 3af5023a20
commit a8259945c4
1 changed files with 2 additions and 0 deletions

View File

@ -952,6 +952,8 @@ void Curl_schannel_close(struct connectdata *conn, int sockindex)
int Curl_schannel_shutdown(struct connectdata *conn, int sockindex)
{
(void)conn;
(void)sockindex;
return CURLE_NOT_BUILT_IN; /* TODO: implement SSL/TLS shutdown */
}