[asterisk-commits] russell: branch 12 r406645 - in /branches/12: ./	main/config.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Mon Jan 27 14:36:41 CST 2014
    
    
  
Author: russell
Date: Mon Jan 27 14:36:37 2014
New Revision: 406645
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=406645
Log:
Allow nested #includes in extconfig.conf
extconfig.conf was hard-coded to not allow nested includes for some reason.
The code has been this way since a patch was merged for ASTERISK-3333 (revision
4889), which was a significant update to this code ("Merge config updates").
I can't figure out any good reason why this should be limited.  This patch just
removes the limit and uses the default nesting depth limit.
Closes issue ASTERISK-17837
Review: https://reviewboard.asterisk.org/r/3159/
........
Merged revisions 406643 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 406644 from http://svn.asterisk.org/svn/asterisk/branches/11
Modified:
    branches/12/   (props changed)
    branches/12/main/config.c
Propchange: branches/12/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.
Modified: branches/12/main/config.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/main/config.c?view=diff&rev=406645&r1=406644&r2=406645
==============================================================================
--- branches/12/main/config.c (original)
+++ branches/12/main/config.c Mon Jan 27 14:36:37 2014
@@ -2323,7 +2323,6 @@
 		ast_log(LOG_ERROR, "Unable to allocate memory for new config\n");
 		return -1;
 	}
-	configtmp->max_include_level = 1;
 	config = ast_config_internal_load(extconfig_conf, configtmp, flags, "", "extconfig");
 	if (config == CONFIG_STATUS_FILEINVALID) {
 		return -1;
    
    
More information about the asterisk-commits
mailing list