From e1476b8aabbc5ab9aaa7af08d05cc8334823554e Mon Sep 17 00:00:00 2001 From: Steve Murphy Date: Tue, 27 Mar 2007 18:21:50 +0000 Subject: [PATCH] Merged revisions 59261 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r59261 | murf | 2007-03-27 12:16:32 -0600 (Tue, 27 Mar 2007) | 1 line via 9373 (duplicate context in AEL crashes asterisk), kpfleming pointed on asterisk-dev, that DECLINE in this case the proper thing to do. This change now has it doing the proper thing. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59264 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- pbx/pbx_ael.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pbx/pbx_ael.c b/pbx/pbx_ael.c index 6ca9b34580..0a43ff0cf3 100644 --- a/pbx/pbx_ael.c +++ b/pbx/pbx_ael.c @@ -4053,7 +4053,7 @@ static int pbx_load_module(void) } else { ast_log(LOG_ERROR, "Sorry, but %d syntax errors and %d semantic errors were detected. It doesn't make sense to compile.\n", errs, sem_err); destroy_pval(parse_tree); /* free up the memory */ - return AST_MODULE_LOAD_FAILURE; + return AST_MODULE_LOAD_DECLINE; } destroy_pval(parse_tree); /* free up the memory */