diff options
author | Bob Arnson <bob@firegiant.com> | 2023-01-01 22:00:37 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2023-01-01 22:50:17 -0500 |
commit | 176f0dc2a382ebac3c3fdfb8afd688e0c98126fc (patch) | |
tree | 1eea4a49ff4e89b594c5a216aced8a5a3b9cc839 /src/ext/Iis/ca/scacert.cpp | |
parent | ffae86ed1f600a72d4183166ffbde9dbed1843e9 (diff) | |
download | wix-176f0dc2a382ebac3c3fdfb8afd688e0c98126fc.tar.gz wix-176f0dc2a382ebac3c3fdfb8afd688e0c98126fc.tar.bz2 wix-176f0dc2a382ebac3c3fdfb8afd688e0c98126fc.zip |
Fix missing prefixes in IIS table names.
Fixes https://github.com/wixtoolset/issues/issues/7120.
Diffstat (limited to 'src/ext/Iis/ca/scacert.cpp')
-rw-r--r-- | src/ext/Iis/ca/scacert.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Iis/ca/scacert.cpp b/src/ext/Iis/ca/scacert.cpp index 82a83f18..d391cfc5 100644 --- a/src/ext/Iis/ca/scacert.cpp +++ b/src/ext/Iis/ca/scacert.cpp | |||
@@ -168,7 +168,7 @@ static HRESULT ConfigureCertificates( | |||
168 | DWORD_PTR cbPFXPassword = 0; | 168 | DWORD_PTR cbPFXPassword = 0; |
169 | 169 | ||
170 | // Bail quickly if the Certificate table isn't around. | 170 | // Bail quickly if the Certificate table isn't around. |
171 | if (S_OK != WcaTableExists(L"Certificate")) | 171 | if (S_OK != WcaTableExists(L"Wix4Certificate")) |
172 | { | 172 | { |
173 | WcaLog(LOGMSG_VERBOSE, "Skipping ConfigureCertificates() - required table not present."); | 173 | WcaLog(LOGMSG_VERBOSE, "Skipping ConfigureCertificates() - required table not present."); |
174 | ExitFunction1(hr = S_FALSE); | 174 | ExitFunction1(hr = S_FALSE); |