summaryrefslogtreecommitdiff
path: root/main/loader.c
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2013-07-29 15:57:44 +0000
committerMatthew Jordan <mjordan@digium.com>2013-07-29 15:57:44 +0000
commitaa3da100e8b91f3d15fb485cc753f5738f81899a (patch)
tree62c66a4c625475c930c5b253617956e7418ef37d /main/loader.c
parent5d160491b0a2a8cc0ac4291328a27058d1c72a26 (diff)
When performing a reload, reload the new features_config and not the old
Performing a module reload of core components causes specific functions compiled into the Asterisk binary to be reloaded. The table of said functions was still pointing to the old features reload mechanism, and not the new one. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@395672 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/loader.c')
-rw-r--r--main/loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/loader.c b/main/loader.c
index 86735df52..5cc4b715d 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -313,7 +313,7 @@ static struct reload_classes {
{ "manager", reload_manager },
{ "http", ast_http_reload },
{ "logger", logger_reload },
- { "features", ast_features_reload },
+ { "features", ast_features_config_reload },
{ "dsp", ast_dsp_reload},
{ "udptl", ast_udptl_reload },
{ "indications", ast_indications_reload },