[asterisk-commits] qwell: trunk r89126 - in /trunk: ./ main/say.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Nov 8 17:53:01 CST 2007
Author: qwell
Date: Thu Nov 8 17:53:00 2007
New Revision: 89126
URL: http://svn.digium.com/view/asterisk?view=rev&rev=89126
Log:
Merged revisions 89125 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
(closes issue #11203)
........
r89125 | qwell | 2007-11-08 17:52:35 -0600 (Thu, 08 Nov 2007) | 4 lines
Properly say the seconds here..
Issue 11203, fix described by vma.
........
Modified:
trunk/ (props changed)
trunk/main/say.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/say.c
URL: http://svn.digium.com/view/asterisk/trunk/main/say.c?view=diff&rev=89126&r1=89125&r2=89126
==============================================================================
--- trunk/main/say.c (original)
+++ trunk/main/say.c Thu Nov 8 17:53:00 2007
@@ -4619,7 +4619,7 @@
break;
case 'S':
/* Seconds */
- res = ast_say_number(chan, tm.tm_hour, ints, lang, (char * ) NULL);
+ res = ast_say_number(chan, tm.tm_sec, ints, lang, (char * ) NULL);
if (!res) {
res = wait_file(chan,ints, "digits/second",lang);
}
More information about the asterisk-commits
mailing list