[asterisk-commits] trunk r9436 - /trunk/channels/chan_zap.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Fri Feb 10 15:45:04 MST 2006


Author: mattf
Date: Fri Feb 10 16:45:03 2006
New Revision: 9436

URL: http://svn.digium.com/view/asterisk?rev=9436&view=rev
Log:
Minor bugfix for #6386

Modified:
    trunk/channels/chan_zap.c

Modified: trunk/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_zap.c?rev=9436&r1=9435&r2=9436&view=diff
==============================================================================
--- trunk/channels/chan_zap.c (original)
+++ trunk/channels/chan_zap.c Fri Feb 10 16:45:03 2006
@@ -10623,7 +10623,7 @@
 		} else if (!strcasecmp(v->name, "echotraining")) {
 			if (sscanf(v->value, "%d", &y) == 1) {
 				if ((y < 10) || (y > 4000)) {
-					ast_log(LOG_WARNING, "Echo training time must be within the range of 10 to 2000 ms at line %d\n", v->lineno);					
+					ast_log(LOG_WARNING, "Echo training time must be within the range of 10 to 4000 ms at line %d\n", v->lineno);					
 				} else {
 					echotraining = y;
 				}



More information about the asterisk-commits mailing list