BUG: IsSubDirectory should use ComparePath to do platform-independent path comparison.

This commit is contained in:
Brad King 2006-04-25 09:54:07 -04:00
parent 0005d625a0
commit dbd70091f1
1 changed files with 1 additions and 1 deletions

View File

@ -3466,7 +3466,7 @@ bool SystemTools::IsSubDirectory(const char* cSubdir, const char* cDir)
do
{
path = SystemTools::GetParentDirectory(path.c_str());
if ( dir == path )
if(SystemTools::ComparePath(dir.c_str(), path.c_str()))
{
return true;
}