summaryrefslogtreecommitdiff
path: root/modules/commands/os_reload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/os_reload.cpp')
-rw-r--r--modules/commands/os_reload.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/os_reload.cpp b/modules/commands/os_reload.cpp
index 00e649ed7..ed04fbea3 100644
--- a/modules/commands/os_reload.cpp
+++ b/modules/commands/os_reload.cpp
@@ -25,10 +25,10 @@ class CommandOSReload : public Command
{
try
{
- ServerConfig *new_config = new ServerConfig();
+ Configuration::Conf *new_config = new Configuration::Conf();
delete Config;
Config = new_config;
- source.Reply(_("Services' configuration file has been reloaded."));
+ source.Reply(_("Services' configuration has been reloaded."));
}
catch (const ConfigException &ex)
{