From dc8dca7807f8fc07ce7eb027a4efbdbbb0316c78 Mon Sep 17 00:00:00 2001 From: Steve Murphy Date: Mon, 13 Nov 2006 17:13:20 +0000 Subject: [PATCH] AEL need not complain about parkedcalls not being found... just confuses users git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@47553 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 4d32e456e3..199c544ce8 100644 --- a/pbx/pbx_ael.c +++ b/pbx/pbx_ael.c @@ -812,7 +812,7 @@ static void check_includes(pval *includes) char *incl_context = p4->u1.str; /* find a matching context name */ struct pval *that_other_context = find_context(incl_context); - if (!that_other_context) { + if (!that_other_context&&strcmp(incl_context,"parkedcalls")!=0) { ast_log(LOG_WARNING, "Warning: file %s, line %d-%d: The included context '%s' cannot be found.\n", includes->filename, includes->startline, includes->endline, incl_context); warns++;