summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-01-18 19:19:24 +0000
committerJoshua Colp <jcolp@digium.com>2007-01-18 19:19:24 +0000
commit68d39c2b72c7b0d5e6f84731c0aae3eebb77da18 (patch)
tree2c9fb0baebfb2ce22e05f4e9cfdd68ca6bea024f
parent7f58759debed110704ee0328a101ee650f8fb5ab (diff)
Merged revisions 51251 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r51251 | file | 2007-01-18 14:17:34 -0500 (Thu, 18 Jan 2007) | 2 lines Only start timeout once we reach the end of the files to play back. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@51252 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--apps/app_speech_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_speech_utils.c b/apps/app_speech_utils.c
index 874c6c69f..211cca5d9 100644
--- a/apps/app_speech_utils.c
+++ b/apps/app_speech_utils.c
@@ -609,7 +609,7 @@ static int speech_background(struct ast_channel *chan, void *data)
/* If audio playback has stopped do a check for timeout purposes */
if (chan->streamid == -1 && chan->timingfunc == NULL)
ast_stopstream(chan);
- if (chan->stream == NULL && timeout > 0 && started == 0) {
+ if (chan->stream == NULL && timeout > 0 && started == 0 && !filename_tmp) {
time(&start);
started = 1;
}