examples/htmltitle: Use _stricmp on Windows
Bug: https://curl.haxx.se/mail/lib-2016-02/0017.html
This commit is contained in:
@@ -42,7 +42,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#define COMPARE(a, b) (!stricmp((a), (b)))
|
#define COMPARE(a, b) (!_stricmp((a), (b)))
|
||||||
#else
|
#else
|
||||||
#define COMPARE(a, b) (!strcasecmp((a), (b)))
|
#define COMPARE(a, b) (!strcasecmp((a), (b)))
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user