This commit is contained in:
sfb 2012-04-02 14:27:45 -05:00
commit 77b85dba1b
6 changed files with 13 additions and 6 deletions

View file

@ -257,7 +257,7 @@ IF(WIN32)
IF(WITH_TOOLS)
SET(CMAKE_INSTALL_MFC_LIBRARIES TRUE)
ENDIF(WITH_TOOLS)
INCLUDE(InstallRequiredSystemLibraries)
#INCLUDE(InstallRequiredSystemLibraries)
ENDIF(WIN32)
INCLUDE(CPack)

View file

@ -472,7 +472,9 @@ bool CRyzomFileRetrieverImplementation::downloadBackupFiles(const CSString& shar
continue;
// generate a local filename for the downloaded file
CSString localFileName= NLMISC::CPath::standardizePath(localDirectory)+(fileName+"_"+fdc[i].FileName.replace("/","_")).replace(".","_");
CSString localFileName= NLMISC::CPath::standardizePath(localDirectory)+(fileName+"_"+fdc[i].FileName);
localFileName = localFileName.replace("/","_");
localFileName = localFileName.replace(".","_");
nlinfo("Requesting file download: REMOTE:%s => LOCAL:%s",fdc[i].FileName.c_str(),localFileName.c_str());
// put in a request for the file to be retrieved

View file

@ -134,7 +134,8 @@ bool CPatchmanAdminModule::initModule(const TParsedCommandLine &initInfo)
CDeploymentConfigurationSynchroniser::init(this);
// now that the base classes have been initialised, we can cumulate the module manifests
_Manifest= (CFileReceiver::getModuleManifest()+_Manifest).strip();
_Manifest= (CFileReceiver::getModuleManifest()+_Manifest);
_Manifest = _Manifest.strip();
// we're all done so let the world know
registerProgress(string("PAM Initialised: ")+logMsg+" "+_Manifest);

View file

@ -385,7 +385,8 @@ bool CServerPatchApplier::initModule(const TParsedCommandLine &initInfo)
CDeploymentConfigurationSynchroniser::init(this);
// now that the base classes have been initialised, we can cumulate the module manifests
_Manifest= (CFileReceiver::getModuleManifest()+_Manifest).strip();
_Manifest= (CFileReceiver::getModuleManifest()+_Manifest);
_Manifest = _Manifest.strip();
// we're all done so let the world know
registerProgress(string("SPA Initialised: ")+logMsg+" "+_Manifest);

View file

@ -136,7 +136,8 @@ bool CServerPatchBridge::initModule(const TParsedCommandLine &initInfo)
CFileReceiver::init(this,"*/*");
// now that the base classes have been initialised, we can cumulate the module manifests
_Manifest= (CFileRepository::buildModuleManifest()+" "+CFileReceiver::getModuleManifest()+" "+_Manifest).strip();
_Manifest= (CFileRepository::buildModuleManifest()+" "+CFileReceiver::getModuleManifest()+" "+_Manifest);
_Manifest = _Manifest.strip();
// scan our local file cache to buildup our starting file base
setStateVariable("State","Scanning");

View file

@ -81,7 +81,9 @@ static void addSPTMessage(const CSString& moduleName, const CSString& msgText)
nldebug("SPTMSG_VERBOSE %d: %s: %s",count,moduleName.c_str(),msgText.c_str());
// look for a slot to stick the message in
CSString cleanModuleName= (moduleName.splitTo(':')+'/'+moduleName.splitFrom(':').splitFrom(':')).strip();
CSString cleanModuleName= (moduleName.splitTo(':')+'/'+moduleName.splitFrom(':').splitFrom(':'));
cleanModuleName = cleanModuleName.strip();
uint32 oldest=0;
uint32 oldestTime=~0u;
for (uint32 i=0;i<sizeof(SPTMessage)/sizeof(SPTMessage[0]) && i<NumSPTWatches.get();++i)