projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af07dc8
)
Minor bugfix for #6386
author
Matthew Fredrickson
<creslin@digium.com>
Fri, 10 Feb 2006 22:45:03 +0000
(22:45 +0000)
committer
Matthew 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
patch
|
blob
|
history
diff --git
a/channels/chan_zap.c
b/channels/chan_zap.c
index
a078c63
..
687c960
100644
(file)
--- 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;
}