From: Russell Bryant Date: Wed, 9 Dec 2009 19:58:46 +0000 (+0000) Subject: Fix breakage of the "module load " CLI command. X-Git-Tag: 1.4.28-rc1~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b11d227e7ee837e8487f8c8d388eeee2c132e654;p=thirdparty%2Fasterisk.git Fix breakage of the "module load " CLI command. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@233879 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/loader.c b/main/loader.c index 9190c743b1..98284b1787 100644 --- a/main/loader.c +++ b/main/loader.c @@ -815,7 +815,7 @@ static enum ast_module_load_result load_resource(const char *resource_name, enum 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;