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
1 changed files with 2 additions and 2 deletions

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 #ifdef USE_SSLEAY
if (data->use_ssl) { if (data->use_ssl) {
if(data->ssl) { if(data->ssl) {
SSL_shutdown(data->ssl); (void)SSL_shutdown(data->ssl);
SSL_set_connect_state(data->ssl); SSL_set_connect_state(data->ssl);
SSL_free (data->ssl); SSL_free (data->ssl);