summaryrefslogtreecommitdiff
path: root/res/res_agi.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-12-11 16:52:24 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-12-11 16:52:24 +0000
commitd254de9194f94b3e019e04c7b8b6465b983a42b8 (patch)
tree7ca8d9ebb6853c2fa562552c5f484fe9ae53012c /res/res_agi.c
parent1772fc56f01a7fff6fdc1ff3d6168143584dd047 (diff)
Merged revisions 163088 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r163088 | tilghman | 2008-12-11 10:51:27 -0600 (Thu, 11 Dec 2008) | 6 lines Don't wait forever, if there's a specified recording timeout. (closes issue #13885) Reported by: bamby Patches: res_agi.c.patch uploaded by bamby (license 430) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@163089 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_agi.c')
-rw-r--r--res/res_agi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 89c23cbd5..cfdd48e39 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -1558,7 +1558,7 @@ static int handle_recordfile(struct ast_channel *chan, AGI *agi, int argc, char
start = ast_tvnow();
while ((ms < 0) || ast_tvdiff_ms(ast_tvnow(), start) < ms) {
- res = ast_waitfor(chan, -1);
+ res = ast_waitfor(chan, ms - ast_tvdiff_ms(ast_tvnow(), start));
if (res < 0) {
ast_closestream(fs);
ast_agi_send(agi->fd, chan, "200 result=%d (waitfor) endpos=%ld\n", res,sample_offset);