aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-08 23:53:00 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-08 23:53:00 +0000
commitab163d8036d5b33a5cde18aa74a7cc304906c32b (patch)
treeb26a6b8d9cfec5d92f71f6d6ed791cab81165af3 /main
parent3c3f848e92882b0ddaa15205a4954e37c2c4f3f7 (diff)
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. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89126 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/say.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/say.c b/main/say.c
index 92ce23009..6daabdcf3 100644
--- a/main/say.c
+++ b/main/say.c
@@ -4619,7 +4619,7 @@ int ast_say_date_with_format_fr(struct ast_channel *chan, time_t time, const cha
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);
}