Minor bugfix for #6386
authorMatthew Fredrickson <creslin@digium.com>
Fri, 10 Feb 2006 22:45:03 +0000 (22:45 +0000)
committerMatthew Fredrickson <creslin@digium.com>
Fri, 10 Feb 2006 22:45:03 +0000 (22:45 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9436 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_zap.c

index a078c63..687c960 100644 (file)
@@ -10623,7 +10623,7 @@ static int setup_zap(int reload)
                } 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;
                                }