diff options
Diffstat (limited to '')
-rw-r--r-- | src/ext/Iis/ca/scaweblog7.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ext/Iis/ca/scaweblog7.cpp b/src/ext/Iis/ca/scaweblog7.cpp index c857c46f..b8a4db9e 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 `IIsWebLog` WHERE `Log`=?"; | 6 | L"FROM `Wix4IIsWebLog` WHERE `Log`=?"; |
7 | 7 | ||
8 | enum eWebLogQuery { wlqLog = 1, wlqFormat }; | 8 | enum eWebLogQuery { wlqLog = 1, wlqFormat }; |
9 | 9 | ||
@@ -50,7 +50,7 @@ HRESULT ScaGetWebLog7( | |||
50 | ExitOnFailure(hr, "failed to copy log name: %ls", pwzData); | 50 | ExitOnFailure(hr, "failed to copy log name: %ls", pwzData); |
51 | 51 | ||
52 | hr = WcaGetRecordString(hRec, wlqFormat, &pwzData); | 52 | hr = WcaGetRecordString(hRec, wlqFormat, &pwzData); |
53 | ExitOnFailure(hr, "failed to get IIsWebLog.Format for Log:", wzLog); | 53 | ExitOnFailure(hr, "failed to get IIsWebLog.Format for Log: %ls", wzLog); |
54 | 54 | ||
55 | //translate WIX log format name strings to IIS7 | 55 | //translate WIX log format name strings to IIS7 |
56 | if (0 == lstrcmpW(pwzData, L"Microsoft IIS Log File Format")) | 56 | if (0 == lstrcmpW(pwzData, L"Microsoft IIS Log File Format")) |