summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGisle Vanem <gvanem@yahoo.no>2016-02-06 17:02:53 -0500
committerJay Satiro <raysatiro@yahoo.com>2016-02-06 17:02:55 -0500
commit6f702ebaa237487e1d1e7c1ad4b9a019c2ae474d (patch)
treea7e1560a77ce282c1284b97cf9631462229e99a2
parent86d3d62f5aec4e7d305bf16bb9d0189ac4993940 (diff)
downloadcurl-6f702ebaa237487e1d1e7c1ad4b9a019c2ae474d.tar.gz
examples/htmltitle: Use _stricmp on Windows
Bug: https://curl.haxx.se/mail/lib-2016-02/0017.html
-rw-r--r--docs/examples/htmltitle.cpp2
1 files changed, 1 insertions, 1 deletions
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