mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-15 00:41:02 +00:00
Minor bugfix for #6386
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9436 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user