[svn-commits] mjordan: trunk r395672 - /trunk/main/loader.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Jul 29 10:57:46 CDT 2013


Author: mjordan
Date: Mon Jul 29 10:57:44 2013
New Revision: 395672

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=395672
Log:
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.

Modified:
    trunk/main/loader.c

Modified: trunk/main/loader.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/loader.c?view=diff&rev=395672&r1=395671&r2=395672
==============================================================================
--- trunk/main/loader.c (original)
+++ trunk/main/loader.c Mon Jul 29 10:57:44 2013
@@ -313,7 +313,7 @@
 	{ "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 },




More information about the svn-commits mailing list