ERR: Attempt to remove more warnings

This commit is contained in:
Andy Cedilnik 2003-05-16 15:15:42 -04:00
parent b524f7573b
commit 083aba04cf
5 changed files with 16 additions and 9 deletions

View File

@ -416,5 +416,7 @@ IF(CURL_TESTING)
SUBDIRS(Testing)
ENDIF(CURL_TESTING)
IF(NOT CMAKE_BUILD_WITH_CURL)
ADD_EXECUTABLE(LIBCURL Testing/curltest.c)
TARGET_LINK_LIBRARIES(LIBCURL Curl)
ENDIF(NOT CMAKE_BUILD_WITH_CURL)

View File

@ -876,10 +876,15 @@ CURLFORMcode FormAdd(struct curl_httppost **httppost,
{
/* this "cast increases required alignment of target type" but
we consider it OK anyway */
struct curl_slist* list = array_state?
(struct curl_slist*)array_value:
va_arg(params, struct curl_slist*);
struct curl_slist* list;
if ( array_state )
{
memcpy(list, array_value, sizeof(struct curl_slist*));
}
else
{
list = va_arg(params, struct curl_slist*);
}
if( current_form->contentheader )
return_value = CURL_FORMADD_OPTION_TWICE;
else

View File

@ -1795,7 +1795,7 @@ LookupWord (yylval, buff)
/* Make it lowercase. */
for (p = buff; *p; p++)
if (ISUPPER ((unsigned char) *p))
if (ISUPPER ((unsigned int)(*p)))
*p = (char)tolower (*p);
if (strcmp (buff, "am") == 0 || strcmp (buff, "a.m.") == 0)

View File

@ -174,7 +174,7 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
/* scan through the list and remove the 'curl_handle' */
easy = multi->easy.next;
while(easy) {
if(easy->easy_handle == curl_handle)
if((CURL*)(easy->easy_handle) == curl_handle)
break;
easy=easy->next;
}

View File

@ -973,10 +973,10 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
}
}
}
break;
#else
return CURLE_SSL_ENGINE_NOTFOUND;
#endif
break;
case CURLOPT_SSLENGINE_DEFAULT:
/*
* flag to set engine as default.