aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/cppmicroservices/fix_strnicmp.patch
blob: 1a9245f6a4331b716e3c73e574aeb3ae4c073869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/framework/src/util/PropsCheck.h b/framework/src/util/PropsCheck.h
index 26acd33..930a328 100644
--- a/framework/src/util/PropsCheck.h
+++ b/framework/src/util/PropsCheck.h
@@ -47,7 +47,7 @@
 
 #ifdef US_PLATFORM_WINDOWS
 #    include <string.h>
-#    define ci_compare strnicmp
+#    define ci_compare _strnicmp
 #else
 #    include <strings.h>
 #    define ci_compare strncasecmp