summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestCVS.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-04-29 18:20:40 (GMT)
committerBrad King <brad.king@kitware.com>2009-04-29 18:20:40 (GMT)
commit7b527a6585ca448f34bfcd682eac670f7c9e5581 (patch)
tree14274d4ac065861b8609ef16cf97bf6b03c757c9 /Source/CTest/cmCTestCVS.cxx
parent1f7ef5bf7aa5f6be09743b7e037c16eae55933ed (diff)
downloadCMake-7b527a6585ca448f34bfcd682eac670f7c9e5581.zip
CMake-7b527a6585ca448f34bfcd682eac670f7c9e5581.tar.gz
CMake-7b527a6585ca448f34bfcd682eac670f7c9e5581.tar.bz2
BUG: Remove '-d<now' from 'cvs log' commands
When CTest runs 'cvs log' to get revision information for updated files, we were passing '-d<now'. The option seems useless since revisions cannot be created in the future, and can lose revisions if the client machine clock is behind the server.
Diffstat (limited to 'Source/CTest/cmCTestCVS.cxx')
-rw-r--r--Source/CTest/cmCTestCVS.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestCVS.cxx b/Source/CTest/cmCTestCVS.cxx
index cfc9bcf..cbd201e 100644
--- a/Source/CTest/cmCTestCVS.cxx
+++ b/Source/CTest/cmCTestCVS.cxx
@@ -261,7 +261,7 @@ void cmCTestCVS::LoadRevisions(std::string const& file,
// Run "cvs log" to get revisions of this file on this branch.
const char* cvs = this->CommandLineTool.c_str();
const char* cvs_log[] =
- {cvs, "log", "-N", "-d<now", branchFlag, file.c_str(), 0};
+ {cvs, "log", "-N", branchFlag, file.c_str(), 0};
LogParser out(this, "log-out> ", revisions);
OutputLogger err(this->Log, "log-err> ");