projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
927901f
)
Don't kill asterisk if extensions.lua is not present.
author
Russell Bryant
<russell@russellbryant.com>
Fri, 2 Nov 2007 21:36:37 +0000
(21:36 +0000)
committer
Russell Bryant
<russell@russellbryant.com>
Fri, 2 Nov 2007 21:36:37 +0000
(21:36 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@88371
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
pbx/pbx_lua.c
patch
|
blob
|
history
diff --git
a/pbx/pbx_lua.c
b/pbx/pbx_lua.c
index
455cc70
..
49d0ae5
100644
(file)
--- a/
pbx/pbx_lua.c
+++ b/
pbx/pbx_lua.c
@@
-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);