diff options
author | Yang Tse <yangsita@gmail.com> | 2012-06-14 12:12:54 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-06-14 12:12:54 +0200 |
commit | a8259945c4086445022b658f023bc712d1fc9c9d (patch) | |
tree | 5d15e116635b0961e5970cce1e1fe59d2d881ff8 | |
parent | 3af5023a20dc75ae00546359e44ba762d74887c1 (diff) |
schannel: fix unused parameter warnings
-rw-r--r-- | lib/curl_schannel.c | 2 |
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 */ } |