aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/manifest.cpp
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-08-03 15:41:53 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-08-04 10:03:57 -0500
commit9ae1c04d5fa02ac020885cdad7c592f7bb43d83e (patch)
tree2832850289c8b703fa39e5d1c97666331e2310b1 /src/burn/engine/manifest.cpp
parentce8acddf52bde840571535c3dfd56a2371d80684 (diff)
downloadwix-9ae1c04d5fa02ac020885cdad7c592f7bb43d83e.tar.gz
wix-9ae1c04d5fa02ac020885cdad7c592f7bb43d83e.tar.bz2
wix-9ae1c04d5fa02ac020885cdad7c592f7bb43d83e.zip
Parse most of Burn command line parameters into BURN_ENGINE_COMMAND.
Diffstat (limited to 'src/burn/engine/manifest.cpp')
-rw-r--r--src/burn/engine/manifest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/manifest.cpp b/src/burn/engine/manifest.cpp
index 1ef8e610..7e16de13 100644
--- a/src/burn/engine/manifest.cpp
+++ b/src/burn/engine/manifest.cpp
@@ -98,7 +98,7 @@ static HRESULT ParseFromXml(
98 } 98 }
99 99
100 // parse disable system restore 100 // parse disable system restore
101 hr = XmlGetYesNoAttribute(pixnChain, L"DisableSystemRestore", &pEngineState->fDisableSystemRestore); 101 hr = XmlGetYesNoAttribute(pixnChain, L"DisableSystemRestore", &pEngineState->internalCommand.fDisableSystemRestore);
102 if (E_NOTFOUND != hr) 102 if (E_NOTFOUND != hr)
103 { 103 {
104 ExitOnFailure(hr, "Failed to get Chain/@DisableSystemRestore"); 104 ExitOnFailure(hr, "Failed to get Chain/@DisableSystemRestore");