[Verifier]検証失敗時の表示を強調

git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@169 385bec56-5757-e545-9c3a-d8741f4650f1
This commit is contained in:
N2614 2011-03-29 08:01:49 +00:00
parent 59fb4fbf35
commit 2991130a52
2 changed files with 6 additions and 5 deletions

View File

@ -26,7 +26,6 @@ INCLUDES += $(SAMPLED_DEMOS_COMMON_INCLUDE_DIR) \
SOURCES[] = SOURCES[] =
main.cpp main.cpp
../../common/HardwareInfo.cpp ../../common/HardwareInfo.cpp
../../common/DrawSystemState.cpp
../../common/FileTransfer.cpp ../../common/FileTransfer.cpp
../../common/FileChecker.cpp ../../common/FileChecker.cpp
../../common/SdReaderWriter.cpp ../../common/SdReaderWriter.cpp

View File

@ -313,12 +313,12 @@ bool VerifyDirectory(const wchar_t * from_path, void* buf,
ret_value = CalculateAndCompareCmac(&context, sdCmac); ret_value = CalculateAndCompareCmac(&context, sdCmac);
if(!ret_value) if(!ret_value)
{ {
COMMON_LOGGER("Verification Failed, %s\n", GetCharStr(target_from.str().c_str())); COMMON_LOGGER("********** Verification Failed **********\n %s\n", GetCharStr(target_from.str().c_str()));
s_VerifyFail++; s_VerifyFail++;
} }
else else
{ {
COMMON_LOGGER("Success\n"); COMMON_LOGGER("Success %s\n", GetCharStr(target_from.str().c_str()));
s_VerifySuccess++; s_VerifySuccess++;
} }
break; break;
@ -339,12 +339,12 @@ bool VerifyDirectory(const wchar_t * from_path, void* buf,
ret_value = CalculateAndCompareCmac(&context, sdCmac); ret_value = CalculateAndCompareCmac(&context, sdCmac);
if(!ret_value) if(!ret_value)
{ {
COMMON_LOGGER("Verification Failed, %s\n", GetCharStr(target_from.str().c_str())); COMMON_LOGGER("********** Verification Failed **********\n %s\n", GetCharStr(target_from.str().c_str()));
s_VerifyFail++; s_VerifyFail++;
} }
else else
{ {
COMMON_LOGGER("Success\n"); COMMON_LOGGER("Success %s\n", GetCharStr(target_from.str().c_str()));
s_VerifySuccess++; s_VerifySuccess++;
} }
break; break;
@ -367,6 +367,8 @@ void VerifyThreadFunc()
nn::Result result; nn::Result result;
COMMON_LOGGER("VerifyThreadFunc Start\n"); COMMON_LOGGER("VerifyThreadFunc Start\n");
s_VerifyFail = 0;
s_VerifySuccess = 0;
result = common::SdMountManager::Mount(); result = common::SdMountManager::Mount();