Loading lib/strequal.c +3 −0 Original line number Original line Diff line number Diff line Loading @@ -63,6 +63,9 @@ int curl_strnequal(const char *first, const char *second, size_t max) first++; first++; second++; second++; } } if(0 == max) return 1; /* they are equal this far */ return toupper(*first) == toupper(*second); return toupper(*first) == toupper(*second); #endif #endif } } Loading Loading
lib/strequal.c +3 −0 Original line number Original line Diff line number Diff line Loading @@ -63,6 +63,9 @@ int curl_strnequal(const char *first, const char *second, size_t max) first++; first++; second++; second++; } } if(0 == max) return 1; /* they are equal this far */ return toupper(*first) == toupper(*second); return toupper(*first) == toupper(*second); #endif #endif } } Loading