アクセスログ変換ツールが不正コマンド検出に対応したことに伴う変更

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@579 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
n1481 2011-12-05 07:23:20 +00:00
parent 2a716b133d
commit 70f052b08b

View File

@ -1119,9 +1119,19 @@ void Checker::FindAccessLogFile( RomHeader* gHeaderBuf, Entry* mEntry, Entry* en
}
printf( "\n");
}
else if( memcmp( logBuf, "<<BACK", 4) == 0)
{
printf( "<<backup access>>\n");
fread( logBuf, 12, 1, lfp);
}
else if( memcmp( logBuf, "<<INVA", 4) == 0)
{
printf( "<<INVALID access>>\n");
fread( logBuf, 12, 1, lfp);
}
else
{
printf( "<<other access>>\n");
printf( "<<unknown access>>\n");
fread( logBuf, 12, 1, lfp);
}
i++;