]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
schannel: fix unused parameter warnings
authorYang Tse <yangsita@gmail.com>
Thu, 14 Jun 2012 10:12:54 +0000 (12:12 +0200)
committerYang Tse <yangsita@gmail.com>
Thu, 14 Jun 2012 10:12:54 +0000 (12:12 +0200)
lib/curl_schannel.c

index 1ddc220ae71bd3a6cbd3ea27b5cb870114d99916..71a3c57affdb6459f7c37fbbb061d9a225d95600 100644 (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 */
 }