1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

schannel: Fixed compilation warning in vtls.c

vtls.c:688:43: warning: unused parameter 'data'
This commit is contained in:
Steve Holme 2014-08-08 21:12:43 +01:00
parent ea864fb24d
commit cda4aaba4d

View File

@ -131,6 +131,7 @@ int Curl_schannel_random(unsigned char *entropy, size_t length);
#define curlssl_check_cxn(x) (x=x, -1)
#define curlssl_data_pending Curl_schannel_data_pending
#define CURL_SSL_BACKEND CURLSSLBACKEND_SCHANNEL
#define curlssl_random(x,y,z) Curl_schannel_random(y,z)
#define curlssl_random(x,y,z) ((void)x, Curl_schannel_random(y,z))
#endif /* USE_SCHANNEL */
#endif /* HEADER_CURL_SCHANNEL_H */