From 1636fd795ddaf5f9e0b45ef08a3857e439049da1 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 28 Jun 2019 22:41:00 -0700 Subject: [PATCH] modules/console: Fix imports misnaming m_conf -> conf. --- modules/console.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/console.cc b/modules/console.cc index d1e5ffec3..2e4fcbf67 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -1296,7 +1296,7 @@ console_cmd__conf__set(opt &out, const string_view &line) static mods::import set_conf_item { - "m_conf", "set_conf_item" + "conf", "set_conf_item" }; const auto event_id @@ -1351,7 +1351,7 @@ console_cmd__conf__rehash(opt &out, const string_view &line) using prototype = void (const string_view &, const bool &); static mods::import rehash_conf { - "m_conf", "rehash_conf" + "conf", "rehash_conf" }; string_view prefix @@ -1389,7 +1389,7 @@ console_cmd__conf__default(opt &out, const string_view &line) using prototype = void (const string_view &); static mods::import default_conf { - "m_conf", "default_conf" + "conf", "default_conf" }; string_view prefix @@ -1420,7 +1420,7 @@ console_cmd__conf__reload(opt &out, const string_view &line) using prototype = void (); static mods::import reload_conf { - "m_conf", "reload_conf" + "conf", "reload_conf" }; reload_conf(); @@ -1437,7 +1437,7 @@ console_cmd__conf__reset(opt &out, const string_view &line) using prototype = void (); static mods::import refresh_conf { - "m_conf", "refresh_conf" + "conf", "refresh_conf" }; refresh_conf();