diff options
author | Gisle Vanem <gvanem@yahoo.no> | 2016-02-06 17:02:53 -0500 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2016-02-06 17:02:55 -0500 |
commit | 6f702ebaa237487e1d1e7c1ad4b9a019c2ae474d (patch) | |
tree | a7e1560a77ce282c1284b97cf9631462229e99a2 /docs/examples | |
parent | 86d3d62f5aec4e7d305bf16bb9d0189ac4993940 (diff) |
examples/htmltitle: Use _stricmp on Windows
Bug: https://curl.haxx.se/mail/lib-2016-02/0017.html
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/htmltitle.cpp | 2 |
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 |