diff options
author | ShinDarth <borzifrancesco@gmail.com> | 2016-08-07 14:55:21 +0200 |
---|---|---|
committer | ShinDarth <borzifrancesco@gmail.com> | 2016-08-07 14:55:21 +0200 |
commit | a7a81f90b191aeabebc768ff18807abf6d655a0c (patch) | |
tree | 369c1e94a8270ac4a5ea60cfa14243bb6866f043 /src/server/authserver/Main.cpp | |
parent | b96f058c175657aa85047f4200196bdd952c9888 (diff) | |
parent | 1fcfb9af5a0a8e4d308ec2ccda20adab99dce3ec (diff) |
Merge branch 'master' into git
Diffstat (limited to 'src/server/authserver/Main.cpp')
-rw-r--r-- | src/server/authserver/Main.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp index 4b891ec512..20a270ff00 100644 --- a/src/server/authserver/Main.cpp +++ b/src/server/authserver/Main.cpp @@ -104,7 +104,15 @@ extern int main(int argc, char** argv) ++count; } - if (!sConfigMgr->LoadInitial(configFile)) + std::string cfg_def_file=_TRINITY_REALM_CONFIG; + cfg_def_file += ".dist"; + + if (!sConfigMgr->LoadInitial(cfg_def_file.c_str())) { + printf("Invalid or missing default configuration file : %s\n", cfg_def_file.c_str()); + return 1; + } + + if (!sConfigMgr->LoadMore(configFile)) { printf("Invalid or missing configuration file : %s\n", configFile); printf("Verify that the file exists and has \'[authserver]\' written in the top of the file!\n"); |