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
Родитель 1cf13c825f
Коммит a79b541bd2
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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);