From e1c1a6db207f4ba991bb62c1f602cc42e540b0df Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 20 May 2005 03:50:47 +0000 Subject: [PATCH] fix messages --- stepmania/src/CryptManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/CryptManager.cpp b/stepmania/src/CryptManager.cpp index 8807b63f7b..0d98092aee 100644 --- a/stepmania/src/CryptManager.cpp +++ b/stepmania/src/CryptManager.cpp @@ -223,7 +223,7 @@ bool CryptManager::VerifyFileWithFile( CString sPath, CString sSignatureFile, CS CString sError; if( !VerifyFile(file, sSignature, sPublicKey, sError) ) { - LOG->Warn( "VerifyFile failed: %s", sPath.c_str(), sError.c_str() ); + LOG->Warn( "VerifyFile(%s) failed: %s", sPath.c_str(), sError.c_str() ); return false; } @@ -273,7 +273,7 @@ bool CryptManager::Verify( CString sPath, CString sSignature ) CString sError; if( !VerifyFile(file, sSignature, sPublicKey, sError) ) { - LOG->Warn( "Verify failed: %s", sPath.c_str(), sError.c_str() ); + LOG->Warn( "Verify(%s) failed: %s", sPath.c_str(), sError.c_str() ); return false; }