aboutsummaryrefslogtreecommitdiff
path: root/src/engine/apply.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/apply.cpp')
-rw-r--r--src/engine/apply.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/apply.cpp b/src/engine/apply.cpp
index eae7c681..9a0f64e1 100644
--- a/src/engine/apply.cpp
+++ b/src/engine/apply.cpp
@@ -272,7 +272,7 @@ extern "C" HRESULT ApplySetVariables(
272{ 272{
273 HRESULT hr = S_OK; 273 HRESULT hr = S_OK;
274 274
275 hr = VariableSetString(pVariables, BURN_BUNDLE_FORCED_RESTART_PACKAGE, NULL, TRUE); 275 hr = VariableSetString(pVariables, BURN_BUNDLE_FORCED_RESTART_PACKAGE, NULL, TRUE, FALSE);
276 ExitOnFailure(hr, "Failed to set the bundle forced restart package built-in variable."); 276 ExitOnFailure(hr, "Failed to set the bundle forced restart package built-in variable.");
277 277
278LExit: 278LExit:
@@ -2493,7 +2493,7 @@ static HRESULT ExecutePackageComplete(
2493 if (BOOTSTRAPPER_APPLY_RESTART_INITIATED == *pRestart) 2493 if (BOOTSTRAPPER_APPLY_RESTART_INITIATED == *pRestart)
2494 { 2494 {
2495 // Best effort to set the forced restart package variable. 2495 // Best effort to set the forced restart package variable.
2496 VariableSetString(pVariables, BURN_BUNDLE_FORCED_RESTART_PACKAGE, pPackage->sczId, TRUE); 2496 VariableSetString(pVariables, BURN_BUNDLE_FORCED_RESTART_PACKAGE, pPackage->sczId, TRUE, FALSE);
2497 } 2497 }
2498 2498
2499 // If we're retrying, leave a message in the log file and say everything is okay. 2499 // If we're retrying, leave a message in the log file and say everything is okay.