diff options
Diffstat (limited to 'src/ext/Bal/stdbas')
| -rw-r--r-- | src/ext/Bal/stdbas/WixStandardBootstrapperApplication.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ext/Bal/stdbas/WixStandardBootstrapperApplication.cpp b/src/ext/Bal/stdbas/WixStandardBootstrapperApplication.cpp index 59b2d8de..9ddab7c0 100644 --- a/src/ext/Bal/stdbas/WixStandardBootstrapperApplication.cpp +++ b/src/ext/Bal/stdbas/WixStandardBootstrapperApplication.cpp | |||
| @@ -2928,7 +2928,7 @@ private: | |||
| 2928 | 2928 | ||
| 2929 | if (argv[i][0] == L'-' || argv[i][0] == L'/') | 2929 | if (argv[i][0] == L'-' || argv[i][0] == L'/') |
| 2930 | { | 2930 | { |
| 2931 | if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, NORM_IGNORECASE, &argv[i][1], -1, L"lang", -1)) | 2931 | if (CSTR_EQUAL == ::CompareStringOrdinal(&argv[i][1], -1, L"lang", -1, TRUE)) |
| 2932 | { | 2932 | { |
| 2933 | if (i + 1 >= argc) | 2933 | if (i + 1 >= argc) |
| 2934 | { | 2934 | { |
| @@ -2941,7 +2941,7 @@ private: | |||
| 2941 | hr = StrAllocString(psczLanguage, &argv[i][0], 0); | 2941 | hr = StrAllocString(psczLanguage, &argv[i][0], 0); |
| 2942 | BalExitOnFailure(hr, "Failed to copy language."); | 2942 | BalExitOnFailure(hr, "Failed to copy language."); |
| 2943 | } | 2943 | } |
| 2944 | else if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, NORM_IGNORECASE, &argv[i][1], -1, L"cache", -1)) | 2944 | else if (CSTR_EQUAL == ::CompareStringOrdinal(&argv[i][1], -1, L"cache", -1, TRUE)) |
| 2945 | { | 2945 | { |
| 2946 | m_fRequestedCacheOnly = TRUE; | 2946 | m_fRequestedCacheOnly = TRUE; |
| 2947 | } | 2947 | } |
