[asterisk-commits] sgriepentrog: trunk r404461 - in /trunk: ./ main/say.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Dec 20 15:18:03 CST 2013
Author: sgriepentrog
Date: Fri Dec 20 15:18:00 2013
New Revision: 404461
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=404461
Log:
say.c: correct time for polish
In ast_say_date_with_format_pl(), change ast_say_number() to
use tm_sec instead of tm_mn.
(closes issue ASTERISK-22856)
Reported by: Robert Mordec
Review: https://reviewboard.asterisk.org/r/3082/
Patches:
say.c.patch uploaded by veilen (license 6555)
........
Merged revisions 404456 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 404457 from http://svn.asterisk.org/svn/asterisk/branches/11
........
Merged revisions 404458 from http://svn.asterisk.org/svn/asterisk/branches/12
Modified:
trunk/ (props changed)
trunk/main/say.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.
Modified: trunk/main/say.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/say.c?view=diff&rev=404461&r1=404460&r2=404461
==============================================================================
--- trunk/main/say.c (original)
+++ trunk/main/say.c Fri Dec 20 15:18:00 2013
@@ -5712,7 +5712,7 @@
if (!res)
res = wait_file(chan, ints, "digits/second-a", lang);
} else {
- res = ast_say_number(chan, tm.tm_min, ints, lang, "f");
+ res = ast_say_number(chan, tm.tm_sec, ints, lang, "f");
if (!res) {
int ten, one;
ten = tm.tm_sec / 10;
More information about the asterisk-commits
mailing list