mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
アクセスログ変換ツールが不正コマンド検出に対応したことに伴う変更
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@579 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
2a716b133d
commit
70f052b08b
@ -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++;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user