aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-06-14 12:12:54 +0200
committerYang Tse <yangsita@gmail.com>2012-06-14 12:12:54 +0200
commita8259945c4086445022b658f023bc712d1fc9c9d (patch)
tree5d15e116635b0961e5970cce1e1fe59d2d881ff8 /lib
parent3af5023a20dc75ae00546359e44ba762d74887c1 (diff)
schannel: fix unused parameter warnings
Diffstat (limited to 'lib')
-rw-r--r--lib/curl_schannel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/curl_schannel.c b/lib/curl_schannel.c
index 1ddc220ae..71a3c57af 100644
--- a/lib/curl_schannel.c
+++ b/lib/curl_schannel.c
@@ -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 */
}