[Asterisk-cvs] asterisk config.c,1.50,1.51

anthm at lists.digium.com anthm at lists.digium.com
Thu Jan 27 15:08:43 CST 2005


Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv12394

Modified Files:
	config.c 
Log Message:
Fixing "parsing" bug in config.c (AGAIN!)
if you had a verbose of 2 you got the following:
Parsing '/etc/asterisk/cdr_odbc.conf':   == Parsing '/etc/asterisk/confcall.conf': *CLI>   == Parsing '/etc/asterisk/sip_notify.conf': 
the carraige return only prints on verbose of 3 or more so i am again moving them to be the same.





Index: config.c
===================================================================
RCS file: /usr/cvsroot/asterisk/config.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- config.c	25 Jan 2005 06:10:19 -0000	1.50
+++ config.c	27 Jan 2005 21:10:44 -0000	1.51
@@ -459,7 +459,7 @@
 			for (i=0; i<globbuf.gl_pathc; i++) {
 				strncpy(fn, globbuf.gl_pathv[i], sizeof(fn)-1);
 #endif
-	if ((option_verbose > 1) && !option_debug) {
+	if ((option_verbose > 2) && !option_debug) {
 		ast_verbose(  VERBOSE_PREFIX_2 "Parsing '%s': ", fn);
 		fflush(stdout);
 	}




More information about the svn-commits mailing list