aboutsummaryrefslogtreecommitdiffstats
path: root/say.c
diff options
context:
space:
mode:
Diffstat (limited to 'say.c')
-rwxr-xr-xsay.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/say.c b/say.c
index 80aad6e03..d04b52d57 100755
--- a/say.c
+++ b/say.c
@@ -2815,9 +2815,14 @@ int ast_say_date_with_format_en(struct ast_channel *chan, time_t time, const cha
}
break;
case 'M':
+ case 'N':
/* Minute */
if (tm.tm_min == 0) {
- res = wait_file(chan,ints, "digits/oclock",lang);
+ if (format[offset] == 'M') {
+ res = wait_file(chan, ints, "digits/oclock", lang);
+ } else {
+ res = wait_file(chan, ints, "digits/hundred", lang);
+ }
} else if (tm.tm_min < 10) {
res = wait_file(chan,ints, "digits/oh",lang);
if (!res) {