[svn-commits] russell: branch 1.6.0 r233881 - in /branches/1.6.0: ./ main/loader.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Dec 9 14:00:29 CST 2009


Author: russell
Date: Wed Dec  9 14:00:25 2009
New Revision: 233881

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=233881
Log:
Fix breakage of the "module load <module>" CLI command.

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/main/loader.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
    svn:mergeinfo = /branches/1.4:233879

Modified: branches/1.6.0/main/loader.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/main/loader.c?view=diff&rev=233881&r1=233880&r2=233881
==============================================================================
--- branches/1.6.0/main/loader.c (original)
+++ branches/1.6.0/main/loader.c Wed Dec  9 14:00:25 2009
@@ -828,7 +828,7 @@
 {
 	int res;
 	AST_LIST_LOCK(&module_list);
-	res = load_resource(resource_name, 0);
+	res = load_resource(resource_name, LOAD_ALL);
 	AST_LIST_UNLOCK(&module_list);
 
 	return res;




More information about the svn-commits mailing list