diff options
author | Kaarlo Räihä <mcraiha@users.noreply.github.com> | 2022-10-06 20:11:08 +0300 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-11-04 17:29:34 -0700 |
commit | eb954e1575d2fdaf3aa20d00c136f62a57b5ec09 (patch) | |
tree | d1a436e764f0f3062deb4201f261732aa47fdad3 /src/libs | |
parent | 70457e88bc1c3942067a2fa7b51f241a5e976168 (diff) | |
download | wix-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.cpp | 2 |
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"; | |||
29 | enum eRequiresAttributes { RequiresAttributesMinVersionInclusive = 256, RequiresAttributesMaxVersionInclusive = 512 }; | 29 | enum 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. |
33 | static LPCWSTR vsczRegistryRoot = L"Software\\Classes\\Installer\\Dependencies\\"; | 33 | static LPCWSTR vsczRegistryRoot = L"Software\\Classes\\Installer\\Dependencies\\"; |
34 | static LPCWSTR vsczRegistryDependents = L"Dependents"; | 34 | static LPCWSTR vsczRegistryDependents = L"Dependents"; |
35 | 35 | ||