Don't kill asterisk if extensions.lua is not present.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@88371 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2007-11-02 21:36:37 +00:00
parent 927901fdef
commit 9a47852673

View File

@@ -1277,13 +1277,13 @@ static int load_or_reload_lua_stuff(void)
lua_State *L = luaL_newstate();
if (!L) {
ast_log(LOG_ERROR, "Error allocating lua_State, no memory\n");
return AST_MODULE_LOAD_FAILURE;
return AST_MODULE_LOAD_DECLINE;
}
if (lua_reload_extensions(L)) {
const char *error = lua_tostring(L, -1);
ast_log(LOG_ERROR, "Error loading extensions.lua: %s\n", error);
res = AST_MODULE_LOAD_FAILURE;
res = AST_MODULE_LOAD_DECLINE;
}
lua_close(L);