[asterisk-commits] murf: trunk r87776 - in /trunk: ./ res/ael/pval.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Oct 30 23:20:41 CDT 2007


Author: murf
Date: Tue Oct 30 23:20:40 2007
New Revision: 87776

URL: http://svn.digium.com/view/asterisk?view=rev&rev=87776
Log:
Merged revisions 87775 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r87775 | murf | 2007-10-30 21:51:52 -0600 (Tue, 30 Oct 2007) | 1 line

Included some verbage in the check_includes func, to inform the user that included contexts that have no match in the AEL, might be OK, as AEL cannot check in the extensions.conf or the in-memory contexts, as they may not be there at the time of the check.
........

Modified:
    trunk/   (props changed)
    trunk/res/ael/pval.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/res/ael/pval.c
URL: http://svn.digium.com/view/asterisk/trunk/res/ael/pval.c?view=diff&rev=87776&r1=87775&r2=87776
==============================================================================
--- trunk/res/ael/pval.c (original)
+++ trunk/res/ael/pval.c Tue Oct 30 23:20:40 2007
@@ -818,8 +818,9 @@
 		/* find a matching context name */
 		struct pval *that_other_context = find_context(incl_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);
+			ast_log(LOG_WARNING, "Warning: file %s, line %d-%d: The included context '%s' cannot be found.\n\
+ (You may ignore this warning if '%s' exists in extensions.conf, or is created by another module. I cannot check for those.)\n",
+					includes->filename, includes->startline, includes->endline, incl_context, incl_context);
 			warns++;
 		}
 	}




More information about the asterisk-commits mailing list