aboutsummaryrefslogtreecommitdiff
path: root/src/libs
diff options
context:
space:
mode:
authorKaarlo Räihä <mcraiha@users.noreply.github.com>2022-10-06 20:11:08 +0300
committerRob Mensching <rob@firegiant.com>2022-11-04 17:29:34 -0700
commiteb954e1575d2fdaf3aa20d00c136f62a57b5ec09 (patch)
treed1a436e764f0f3062deb4201f261732aa47fdad3 /src/libs
parent70457e88bc1c3942067a2fa7b51f241a5e976168 (diff)
downloadwix-eb954e1575d2fdaf3aa20d00c136f62a57b5ec09.tar.gz
wix-eb954e1575d2fdaf3aa20d00c136f62a57b5ec09.tar.bz2
wix-eb954e1575d2fdaf3aa20d00c136f62a57b5ec09.zip
Use HTTPS instead of HTTP
Fix some of these
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/dutil/WixToolset.DUtil/deputil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/deputil.cpp b/src/libs/dutil/WixToolset.DUtil/deputil.cpp
index f92c7d18..b5649948 100644
--- a/src/libs/dutil/WixToolset.DUtil/deputil.cpp
+++ b/src/libs/dutil/WixToolset.DUtil/deputil.cpp
@@ -29,7 +29,7 @@ static LPCWSTR vcszAttributesValue = L"Attributes";
29enum eRequiresAttributes { RequiresAttributesMinVersionInclusive = 256, RequiresAttributesMaxVersionInclusive = 512 }; 29enum eRequiresAttributes { RequiresAttributesMinVersionInclusive = 256, RequiresAttributesMaxVersionInclusive = 512 };
30 30
31// We write to Software\Classes explicitly based on the current security context instead of HKCR. 31// We write to Software\Classes explicitly based on the current security context instead of HKCR.
32// See http://msdn.microsoft.com/en-us/library/ms724475(VS.85).aspx for more information. 32// See https://msdn.microsoft.com/en-us/library/ms724475(VS.85).aspx for more information.
33static LPCWSTR vsczRegistryRoot = L"Software\\Classes\\Installer\\Dependencies\\"; 33static LPCWSTR vsczRegistryRoot = L"Software\\Classes\\Installer\\Dependencies\\";
34static LPCWSTR vsczRegistryDependents = L"Dependents"; 34static LPCWSTR vsczRegistryDependents = L"Dependents";
35 35