From: Russell Bryant Date: Mon, 15 Oct 2007 20:21:27 +0000 (+0000) Subject: Add a small fix for the tw version of saying dates. X-Git-Tag: 1.4.14~149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d47ebb492f77a660ab61aae339722065a86e42a4;p=thirdparty%2Fasterisk.git 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: https://origsvn.digium.com/svn/asterisk/branches/1.4@85686 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/say.c b/main/say.c index 38f6a5d3ac..c5cda3eff5 100644 --- a/main/say.c +++ b/main/say.c @@ -5226,15 +5226,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 */ @@ -5249,7 +5245,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 */