summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2006-02-10 22:45:03 +0000
committerMatthew Fredrickson <creslin@digium.com>2006-02-10 22:45:03 +0000
commit5dd0b76b2d8e1f71b60c9c4bd1e2b7e142361b53 (patch)
treef5e8000f7d3d71417e50fcd24ccf2f0ca136337d /channels
parentaf07dc888306930320cc5c77e5e9233a530eefca (diff)
Minor bugfix for #6386
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9436 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index a078c63fa..687c96011 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -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;
}