aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-23 21:10:55 +0000
committermattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-23 21:10:55 +0000
commitd614d1e0aedd0b394fd97d1db1c6296884aba1c5 (patch)
tree75a303193df6bca4d188945b3f9d4dc4a6818a89 /channels
parent7c5f693cf41b37b303fa117320aaa30f85b0853c (diff)
Bump up the echo tail length option
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@29846 f38db490-d61c-443f-a65b-d21fe96a405b
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 dfaf4882b..771470e62 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -10487,7 +10487,7 @@ static int setup_zap(int reload)
y = atoi(v->value);
} else
y = 0;
- if ((y == 32) || (y == 64) || (y == 128) || (y == 256))
+ if ((y == 32) || (y == 64) || (y == 128) || (y == 256) || (y == 512) || (y == 1024))
echocancel = y;
else {
echocancel = ast_true(v->value);