From 6f702ebaa237487e1d1e7c1ad4b9a019c2ae474d Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Sat, 6 Feb 2016 17:02:53 -0500 Subject: examples/htmltitle: Use _stricmp on Windows Bug: https://curl.haxx.se/mail/lib-2016-02/0017.html --- docs/examples/htmltitle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples/htmltitle.cpp') diff --git a/docs/examples/htmltitle.cpp b/docs/examples/htmltitle.cpp index 180a72122..5e6b4a003 100644 --- a/docs/examples/htmltitle.cpp +++ b/docs/examples/htmltitle.cpp @@ -42,7 +42,7 @@ // #ifdef _MSC_VER -#define COMPARE(a, b) (!stricmp((a), (b))) +#define COMPARE(a, b) (!_stricmp((a), (b))) #else #define COMPARE(a, b) (!strcasecmp((a), (b))) #endif -- cgit v1.2.3