aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_zap.c
diff options
context:
space:
mode:
authormattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-10 22:45:03 +0000
committermattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-10 22:45:03 +0000
commit0f4e8cfda172edf21a52f229e8efebc75f996086 (patch)
treef5e8000f7d3d71417e50fcd24ccf2f0ca136337d /channels/chan_zap.c
parent8ebf7821feb084b6a457341922946d497702cc2d (diff)
Minor bugfix for #6386
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9436 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_zap.c')
-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;
}