aboutsummaryrefslogtreecommitdiffstats
path: root/main/say.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-08 23:52:35 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-08 23:52:35 +0000
commit6e4c3714c8b8f476cb2f177d672af5b381e2920c (patch)
tree40c4e916bf99aa5329e2b59c604fb982feb5a972 /main/say.c
parenta042e9d7f77da63c4d72d88794c70aecb1ca4041 (diff)
Properly say the seconds here..
Issue 11203, fix described by vma. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89125 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/say.c')
-rw-r--r--main/say.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/say.c b/main/say.c
index 2a1184b40..336b7f5f5 100644
--- a/main/say.c
+++ b/main/say.c
@@ -4220,7 +4220,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);
}