From: Joshua Colp Date: Thu, 18 Jan 2007 19:17:34 +0000 (+0000) Subject: Only start timeout once we reach the end of the files to play back. X-Git-Tag: 1.4.1~253 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f6132a8ec4def0cf665159e58fa80304bf675e09;p=thirdparty%2Fasterisk.git Only start timeout once we reach the end of the files to play back. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@51251 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_speech_utils.c b/apps/app_speech_utils.c index 8bd07e3591..d66800f779 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; }