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/scaweblog7.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/scaweblog7.cpp')
-rw-r--r-- | src/ext/Iis/ca/scaweblog7.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Iis/ca/scaweblog7.cpp b/src/ext/Iis/ca/scaweblog7.cpp index b8a4db9e..8164e298 100644 --- a/src/ext/Iis/ca/scaweblog7.cpp +++ b/src/ext/Iis/ca/scaweblog7.cpp | |||
@@ -3,7 +3,7 @@ | |||
3 | #include "precomp.h" | 3 | #include "precomp.h" |
4 | // sql queries | 4 | // sql queries |
5 | LPCWSTR vcsWebLogQuery7 = L"SELECT `Log`, `Format` " | 5 | LPCWSTR vcsWebLogQuery7 = L"SELECT `Log`, `Format` " |
6 | L"FROM `Wix4IIsWebLog` WHERE `Log`=?"; | 6 | L"FROM `Wix4IIsWebLog` WHERE `Log`=?"; |
7 | 7 | ||
8 | enum eWebLogQuery { wlqLog = 1, wlqFormat }; | 8 | enum eWebLogQuery { wlqLog = 1, wlqFormat }; |
9 | 9 | ||