summaryrefslogtreecommitdiff
path: root/main/say.c
diff options
context:
space:
mode:
authorDaniel Journo <dan@keshercommunications.com>2017-03-06 21:54:23 +0000
committerDaniel Journo <dan@keshercommunications.com>2017-03-06 15:59:49 -0600
commit272259a2c6e952249d07f32948893771e65f3078 (patch)
tree7c24cfe0934cc236d56c46c5cd068fd84f3c8cd3 /main/say.c
parentc9296b23d1574332ccbc83f3fc7ba492cfc34cfe (diff)
Saynumber is trying to get "and" from "digits/" subfolder
* say.c Changed 'digits/and' to 'vm-and' for en_GB ASTERISK-26598 #close Change-Id: If1b713e5daea6f952b339f139178d292a6c4fcfe
Diffstat (limited to 'main/say.c')
-rw-r--r--main/say.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/say.c b/main/say.c
index 4b3711b85..44f55e25a 100644
--- a/main/say.c
+++ b/main/say.c
@@ -998,7 +998,7 @@ static int ast_say_number_full_de(struct ast_channel *chan, int num, const char
/*! \brief ast_say_number_full_en_GB: British syntax
New files:
- - In addition to American English, the following sounds are required: "and"
+ - In addition to American English, the following sounds are required: "vm-and"
*/
static int ast_say_number_full_en_GB(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd)
{
@@ -1021,7 +1021,7 @@ static int ast_say_number_full_en_GB(struct ast_channel *chan, int num, const ch
ast_copy_string(fn, "digits/hundred", sizeof(fn));
playh = 0;
} else if (playa) {
- ast_copy_string(fn, "digits/and", sizeof(fn));
+ ast_copy_string(fn, "vm-and", sizeof(fn));
playa = 0;
} else if (num < 20) {
snprintf(fn, sizeof(fn), "digits/%d", num);