[asterisk-commits] mmichelson: branch 1.6.1 r179256 - in /branches/1.6.1: ./ apps/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Mar 1 17:28:23 CST 2009
Author: mmichelson
Date: Sun Mar 1 17:28:19 2009
New Revision: 179256
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=179256
Log:
Merged revisions 179254 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r179254 | mmichelson | 2009-03-01 17:25:23 -0600 (Sun, 01 Mar 2009) | 5 lines
Swap reversed timevals.
This was pointed out by ScribbleJ in #asterisk-dev. Thanks very much, ScribbleJ!
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/apps/app_speech_utils.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_speech_utils.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/apps/app_speech_utils.c?view=diff&rev=179256&r1=179255&r2=179256
==============================================================================
--- branches/1.6.1/apps/app_speech_utils.c (original)
+++ branches/1.6.1/apps/app_speech_utils.c Sun Mar 1 17:28:19 2009
@@ -620,7 +620,7 @@
/* Do timeout check (shared between audio/dtmf) */
if ((!quieted || strlen(dtmf)) && started == 1) {
current = ast_tvnow();
- if ((ast_tvdiff_ms(start, current)) >= timeout) {
+ if ((ast_tvdiff_ms(current, start)) >= timeout) {
done = 1;
if (f)
ast_frfree(f);
More information about the asterisk-commits
mailing list