Fix windows problem in curl
This commit is contained in:
parent
4d9b5d5ef1
commit
25dd201047
@ -30,10 +30,10 @@ int curl_strequal(const char *first, const char *second)
|
|||||||
{
|
{
|
||||||
#if defined(HAVE_STRCASECMP)
|
#if defined(HAVE_STRCASECMP)
|
||||||
return !(strcasecmp)(first, second);
|
return !(strcasecmp)(first, second);
|
||||||
#elif defined(HAVE_STRCMPI)
|
|
||||||
return !(strcmpi)(first, second);
|
|
||||||
#elif defined(HAVE_STRICMP)
|
#elif defined(HAVE_STRICMP)
|
||||||
return !(stricmp)(first, second);
|
return !(stricmp)(first, second);
|
||||||
|
#elif defined(HAVE_STRCMPI)
|
||||||
|
return !(strcmpi)(first, second);
|
||||||
#else
|
#else
|
||||||
while (*first && *second) {
|
while (*first && *second) {
|
||||||
if (toupper(*first) != toupper(*second)) {
|
if (toupper(*first) != toupper(*second)) {
|
||||||
@ -50,10 +50,10 @@ int curl_strnequal(const char *first, const char *second, size_t max)
|
|||||||
{
|
{
|
||||||
#if defined(HAVE_STRCASECMP)
|
#if defined(HAVE_STRCASECMP)
|
||||||
return !strncasecmp(first, second, max);
|
return !strncasecmp(first, second, max);
|
||||||
#elif defined(HAVE_STRCMPI)
|
|
||||||
return !strncmpi(first, second, max);
|
|
||||||
#elif defined(HAVE_STRICMP)
|
#elif defined(HAVE_STRICMP)
|
||||||
return !strnicmp(first, second, max);
|
return !strnicmp(first, second, max);
|
||||||
|
#elif defined(HAVE_STRCMPI)
|
||||||
|
return !strncmpi(first, second, max);
|
||||||
#else
|
#else
|
||||||
while (*first && *second && max) {
|
while (*first && *second && max) {
|
||||||
if (toupper(*first) != toupper(*second)) {
|
if (toupper(*first) != toupper(*second)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user