diff options
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/butil.cpp')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/butil.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/butil.cpp b/src/libs/dutil/WixToolset.DUtil/butil.cpp index ac322ae7..175903ad 100644 --- a/src/libs/dutil/WixToolset.DUtil/butil.cpp +++ b/src/libs/dutil/WixToolset.DUtil/butil.cpp | |||
@@ -559,7 +559,7 @@ static HRESULT DetermineRelationType( | |||
559 | { | 559 | { |
560 | ExitOnFailure(hr, "Failed to do array search for addon code match."); | 560 | ExitOnFailure(hr, "Failed to do array search for addon code match."); |
561 | 561 | ||
562 | *pRelationType = BUNDLE_RELATION_DEPENDENT; | 562 | *pRelationType = BUNDLE_RELATION_DEPENDENT_ADDON; |
563 | ExitFunction(); | 563 | ExitFunction(); |
564 | } | 564 | } |
565 | 565 | ||
@@ -571,9 +571,9 @@ static HRESULT DetermineRelationType( | |||
571 | } | 571 | } |
572 | else | 572 | else |
573 | { | 573 | { |
574 | ExitOnFailure(hr, "Failed to do array search for addon code match."); | 574 | ExitOnFailure(hr, "Failed to do array search for patch code match."); |
575 | 575 | ||
576 | *pRelationType = BUNDLE_RELATION_DEPENDENT; | 576 | *pRelationType = BUNDLE_RELATION_DEPENDENT_PATCH; |
577 | ExitFunction(); | 577 | ExitFunction(); |
578 | } | 578 | } |
579 | 579 | ||
@@ -690,7 +690,7 @@ static HRESULT DetermineRelationType( | |||
690 | { | 690 | { |
691 | ExitOnFailure(hr, "Failed to do array search for addon code match."); | 691 | ExitOnFailure(hr, "Failed to do array search for addon code match."); |
692 | 692 | ||
693 | *pRelationType = BUNDLE_RELATION_DEPENDENT; | 693 | *pRelationType = BUNDLE_RELATION_DEPENDENT_ADDON; |
694 | ExitFunction(); | 694 | ExitFunction(); |
695 | } | 695 | } |
696 | 696 | ||
@@ -702,9 +702,9 @@ static HRESULT DetermineRelationType( | |||
702 | } | 702 | } |
703 | else | 703 | else |
704 | { | 704 | { |
705 | ExitOnFailure(hr, "Failed to do array search for addon code match."); | 705 | ExitOnFailure(hr, "Failed to do array search for patch code match."); |
706 | 706 | ||
707 | *pRelationType = BUNDLE_RELATION_DEPENDENT; | 707 | *pRelationType = BUNDLE_RELATION_DEPENDENT_PATCH; |
708 | ExitFunction(); | 708 | ExitFunction(); |
709 | } | 709 | } |
710 | 710 | ||