[asterisk-commits] qwell: branch 1.4 r89125 - /branches/1.4/main/say.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Nov 8 17:52:36 CST 2007
Author: qwell
Date: Thu Nov 8 17:52:35 2007
New Revision: 89125
URL: http://svn.digium.com/view/asterisk?view=rev&rev=89125
Log:
Properly say the seconds here..
Issue 11203, fix described by vma.
Modified:
branches/1.4/main/say.c
Modified: branches/1.4/main/say.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/say.c?view=diff&rev=89125&r1=89124&r2=89125
==============================================================================
--- branches/1.4/main/say.c (original)
+++ branches/1.4/main/say.c Thu Nov 8 17:52:35 2007
@@ -4220,7 +4220,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