From 1d0bb9b26b7ad58ab0bf979ac046f4511b3bf12b Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 5 May 2013 01:55:04 -0400 Subject: Rework the config file reader to be much more flexible and move many configuration directives to the actual modules they are used in. --- modules/commands/os_reload.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/commands/os_reload.cpp') 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) { -- cgit