From 90185f768262d736a0a6b27d10aed4f4f69fa18f Mon Sep 17 00:00:00 2001 From: kervala Date: Mon, 21 Dec 2015 17:31:14 +0100 Subject: [PATCH] Fixed: use PatchUrl instead of PatchServer in ryzom_client_patcher --- code/ryzom/tools/client/client_patcher/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/ryzom/tools/client/client_patcher/main.cpp b/code/ryzom/tools/client/client_patcher/main.cpp index cbd3ddc0b..1ee6c8c5e 100644 --- a/code/ryzom/tools/client/client_patcher/main.cpp +++ b/code/ryzom/tools/client/client_patcher/main.cpp @@ -202,10 +202,10 @@ int main(int argc, char *argv[]) // load client.cfg or client_default.cfg ClientCfg.init(config); - // check if PatchServer is defined - if (ClientCfg.PatchServer.empty()) + // check if PatchUrl is defined + if (ClientCfg.PatchUrl.empty()) { - printError("PatchServer not defined in " + config); + printError("PatchUrl not defined in " + config); return 1; } @@ -273,9 +273,9 @@ int main(int argc, char *argv[]) // set the correct root path pPM->setClientRootPath(rootPath); - // use PatchServer URL + // use PatchUrl vector patchURLs; - pPM->init(patchURLs, ClientCfg.PatchServer, ClientCfg.PatchVersion); + pPM->init(patchURLs, ClientCfg.PatchUrl, ClientCfg.PatchVersion); pPM->startCheckThread(true /* include background patchs */); ucstring state;