summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSVN.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CTest/cmCTestSVN.cxx')
-rw-r--r--Source/CTest/cmCTestSVN.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestSVN.cxx b/Source/CTest/cmCTestSVN.cxx
index cddcacf..d1b759d 100644
--- a/Source/CTest/cmCTestSVN.cxx
+++ b/Source/CTest/cmCTestSVN.cxx
@@ -423,13 +423,13 @@ private:
// See "svn help status".
switch(status)
{
- case 'M': case '!': case 'A': case 'D': case 'R': case 'X':
+ case 'M': case '!': case 'A': case 'D': case 'R':
this->SVN->DoModification(PathModified, path);
break;
case 'C': case '~':
this->SVN->DoModification(PathConflicting, path);
break;
- case 'I': case '?': case ' ': default:
+ case 'X': case 'I': case '?': case ' ': default:
break;
}
}