[asterisk-commits] file: branch 1.4 r53118 - in /branches/1.4: ./ main/config.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Fri Feb 2 09:59:54 MST 2007


Author: file
Date: Fri Feb  2 10:59:53 2007
New Revision: 53118

URL: http://svn.digium.com/view/asterisk?view=rev&rev=53118
Log:
Merged revisions 53117 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r53117 | file | 2007-02-02 10:58:09 -0600 (Fri, 02 Feb 2007) | 2 lines

Pass the glob expanded filename to process_text_line so that error messages contain the actual filename, not the original include one. (issue #8959 reported by tzafrir)

........

Modified:
    branches/1.4/   (props changed)
    branches/1.4/main/config.c

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

Modified: branches/1.4/main/config.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/config.c?view=diff&rev=53118&r1=53117&r2=53118
==============================================================================
--- branches/1.4/main/config.c (original)
+++ branches/1.4/main/config.c Fri Feb  2 10:59:53 2007
@@ -923,7 +923,7 @@
 				if (process_buf) {
 					char *buf = ast_strip(process_buf);
 					if (!ast_strlen_zero(buf)) {
-						if (process_text_line(cfg, &cat, buf, lineno, filename, withcomments)) {
+						if (process_text_line(cfg, &cat, buf, lineno, fn, withcomments)) {
 							cfg = NULL;
 							break;
 						}



More information about the asterisk-commits mailing list