[asterisk-commits] russell: branch 1.4 r233879 - /branches/1.4/main/loader.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Dec 9 13:58:49 CST 2009
Author: russell
Date: Wed Dec 9 13:58:46 2009
New Revision: 233879
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=233879
Log:
Fix breakage of the "module load <module>" CLI command.
Modified:
branches/1.4/main/loader.c
Modified: branches/1.4/main/loader.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/main/loader.c?view=diff&rev=233879&r1=233878&r2=233879
==============================================================================
--- branches/1.4/main/loader.c (original)
+++ branches/1.4/main/loader.c Wed Dec 9 13:58:46 2009
@@ -815,7 +815,7 @@
int ast_load_resource(const char *resource_name)
{
AST_LIST_LOCK(&module_list);
- load_resource(resource_name, 0);
+ load_resource(resource_name, LOAD_ALL);
AST_LIST_UNLOCK(&module_list);
return 0;
More information about the asterisk-commits
mailing list