aboutsummaryrefslogtreecommitdiff
path: root/src/burn/test/BurnUnitTest/PlanTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/burn/test/BurnUnitTest/PlanTest.cpp')
-rw-r--r--src/burn/test/BurnUnitTest/PlanTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/burn/test/BurnUnitTest/PlanTest.cpp b/src/burn/test/BurnUnitTest/PlanTest.cpp
index 25a0cb35..e2850a62 100644
--- a/src/burn/test/BurnUnitTest/PlanTest.cpp
+++ b/src/burn/test/BurnUnitTest/PlanTest.cpp
@@ -3161,12 +3161,12 @@ namespace Bootstrapper
3161 3161
3162 if (pDependencies->fSelfDependent || pDependencies->fActiveParent) 3162 if (pDependencies->fSelfDependent || pDependencies->fActiveParent)
3163 { 3163 {
3164 if (pDependencies->fActiveParent && CSTR_EQUAL == ::CompareStringW(LOCALE_NEUTRAL, NORM_IGNORECASE, pDependencies->wzActiveParent, -1, wzId, -1)) 3164 if (pDependencies->fActiveParent && CSTR_EQUAL == ::CompareStringOrdinal(pDependencies->wzActiveParent, -1, wzId, -1, TRUE))
3165 { 3165 {
3166 pRegistration->fParentRegisteredAsDependent = TRUE; 3166 pRegistration->fParentRegisteredAsDependent = TRUE;
3167 } 3167 }
3168 3168
3169 if (pDependencies->fSelfDependent && CSTR_EQUAL == ::CompareStringW(LOCALE_NEUTRAL, NORM_IGNORECASE, pDependencies->wzSelfDependent, -1, wzId, -1)) 3169 if (pDependencies->fSelfDependent && CSTR_EQUAL == ::CompareStringOrdinal(pDependencies->wzSelfDependent, -1, wzId, -1, TRUE))
3170 { 3170 {
3171 pRegistration->fSelfRegisteredAsDependent = TRUE; 3171 pRegistration->fSelfRegisteredAsDependent = TRUE;
3172 } 3172 }