Fixed compiler warning re: unused variable `bigsize'

This commit is contained in:
Dan Fandrich 2007-10-16 18:09:57 +00:00
parent fbb5518ab6
commit 65ba6e3337

View File

@ -771,8 +771,10 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
va_list param)
{
char *argptr;
curl_off_t bigsize;
CURLcode result = CURLE_OK;
#ifndef CURL_DISABLE_HTTP
curl_off_t bigsize;
#endif
switch(option) {
case CURLOPT_DNS_CACHE_TIMEOUT: