BUG: fix for bug 7292, svn parsing flagged errors or conflicts for switched or locked files

This commit is contained in:
Bill Hoffman 2008-09-09 13:12:46 -04:00
parent 364ac7e386
commit 3864910681
1 changed files with 1 additions and 1 deletions

View File

@ -700,7 +700,7 @@ int cmCTestUpdateHandler::ProcessHandler()
std::string upFile = file_update_line.match(2);
char mod = upChar[0];
bool modifiedOrConflict = false;
if ( mod == 'X')
if ( mod == 'X' || mod == 'S' || mod == 'L')
{
continue;
}