BUG: Remove duplicate prefix

This commit is contained in:
Andy Cedilnik 2005-07-21 09:07:01 -04:00
parent 21d6980897
commit 8483fa93c5
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ bool cmCTestSubmitHandler::SubmitUsingHTTP(const cmStdString& localprefix,
{
local_file = localprefix + "/" + *file;
}
cmStdString remote_file = remoteprefix + remoteprefix + cmSystemTools::GetFilenameName(*file);
cmStdString remote_file = remoteprefix + cmSystemTools::GetFilenameName(*file);
*m_LogFile << "\tUpload file: " << local_file.c_str() << " to "
<< remote_file.c_str() << std::endl;