aboutsummaryrefslogtreecommitdiffstats
path: root/main/say.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-15 21:01:00 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-15 21:01:00 +0000
commit8203acfdae7dd2eaa4450e13b23674f182b5f973 (patch)
tree16b5bf3cc09b1ff9e7be65f668221ae152cf3432 /main/say.c
parenteb8aa9fea83c107db0d6baf76181711e45ae3163 (diff)
Merged revisions 85686 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r85686 | russell | 2007-10-15 15:21:27 -0500 (Mon, 15 Oct 2007) | 7 lines Add a small fix for the tw version of saying dates. (closes issue #7827) Reported by: sharkey Patches: say.nits.patch uploaded by sharkey (license 172) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@85718 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/say.c')
-rw-r--r--main/say.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/main/say.c b/main/say.c
index da0adafcf..f0e30cd2d 100644
--- a/main/say.c
+++ b/main/say.c
@@ -5623,15 +5623,11 @@ int ast_say_date_with_format_tw(struct ast_channel *chan, time_t time, const cha
case 'B':
case 'b':
case 'h':
+ case 'm':
/* January - December */
snprintf(nextmsg,sizeof(nextmsg), "digits/mon-%d", tm.tm_mon);
res = wait_file(chan,ints,nextmsg,lang);
break;
- case 'm':
- /* First - Twelfth */
- snprintf(nextmsg,sizeof(nextmsg), "digits/h-%d", tm.tm_mon +1);
- res = wait_file(chan,ints,nextmsg,lang);
- break;
case 'd':
case 'e':
/* First - Thirtyfirst */
@@ -5646,7 +5642,7 @@ int ast_say_date_with_format_tw(struct ast_channel *chan, time_t time, const cha
res = wait_file(chan,ints,nextmsg,lang);
}
}
- if(!res) res = wait_file(chan,ints,"ri",lang);
+ if(!res) res = wait_file(chan,ints,"digits/day",lang);
break;
case 'Y':
/* Year */