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

made urlfree static, added (void) in front of one of the SSL calls. I did

these changes when trying to run lclint on the curl code.
This commit is contained in:
Daniel Stenberg 2000-07-31 21:31:27 +00:00
parent 1cf13c825f
commit a79b541bd2

View File

@ -142,12 +142,12 @@ void curl_free(void)
{
}
void urlfree(struct UrlData *data, bool totally)
void static urlfree(struct UrlData *data, bool totally)
{
#ifdef USE_SSLEAY
if (data->use_ssl) {
if(data->ssl) {
SSL_shutdown(data->ssl);
(void)SSL_shutdown(data->ssl);
SSL_set_connect_state(data->ssl);
SSL_free (data->ssl);