Skip to content

Commit

Permalink
Fix broken links in log messages and related filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrnikitin authored and rdementi committed Jul 6, 2017
1 parent 3a01f0a commit 405678c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client_bw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@ class PCMPmem : public WinPmem {
switch (sys_info.wProcessorArchitecture)
{
case PROCESSOR_ARCHITECTURE_AMD64:
wcscat_s(driver_filename, MAX_PATH, L"\\winpmem_64.sys");
wcscat_s(driver_filename, MAX_PATH, L"\\winpmem_x64.sys");
if (GetFileAttributes(driver_filename) == INVALID_FILE_ATTRIBUTES)
{
std::cout << "ERROR: winpmem_64.sys not found in current directory. Download it from https://volatility.googlecode.com/svn-history/r2813/branches/scudette/tools/windows/winpmem/binaries/winpmem_64.sys ." << std::endl;
std::cout << "ERROR: winpmem_x64.sys not found in current directory. Download it from https://github.com/google/rekall/raw/master/tools/pmem/resources/winpmem/winpmem_x64.sys ." << std::endl;
std::cout << "ERROR: Memory bandwidth statistics will not be available." << std::endl;
}
break;
case PROCESSOR_ARCHITECTURE_INTEL:
wcscat_s(driver_filename, MAX_PATH, L"\\winpmem_32.sys");
wcscat_s(driver_filename, MAX_PATH, L"\\winpmem_x86.sys");
if (GetFileAttributes(driver_filename) == INVALID_FILE_ATTRIBUTES)
{
std::cout << "ERROR: winpmem_32.sys not found in current directory. Download it from https://volatility.googlecode.com/svn-history/r2813/branches/scudette/tools/windows/winpmem/binaries/winpmem_32.sys ." << std::endl;
std::cout << "ERROR: winpmem_x86.sys not found in current directory. Download it from https://github.com/google/rekall/raw/master/tools/pmem/resources/winpmem/winpmem_x86.sys ." << std::endl;
std::cout << "ERROR: Memory bandwidth statistics will not be available." << std::endl;
}
break;
Expand Down

0 comments on commit 405678c

Please sign in to comment.