summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp25
1 files changed, 1 insertions, 24 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 2a854bc0..afd53fa3 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -1175,30 +1175,7 @@ void Client::initConfiguration()
config.setValue("ChatLogLength", 128);
config.setValue("disableTransparency", false);
- // Checking if the configuration file exists... otherwise create it with
- // default options.
- FILE *configFile = nullptr;
- std::string configPath;
-
- configPath = mConfigDir + "/config.xml";
-
- configFile = fopen(configPath.c_str(), "r");
-
- // If we can't read it, it doesn't exist !
- if (!configFile)
- {
- // We reopen the file in write mode and we create it
- configFile = fopen(configPath.c_str(), "wt");
- }
- if (!configFile)
- {
- logger->log("Can't create %s. Using defaults.", configPath.c_str());
- }
- else
- {
- fclose(configFile);
- config.init(configPath);
- }
+ config.init(mConfigDir + "config.xml");
}
/**