aboutsummaryrefslogtreecommitdiffstats
path: root/say.c
diff options
context:
space:
mode:
Diffstat (limited to 'say.c')
-rwxr-xr-xsay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/say.c b/say.c
index 0a8aa7680..cc1406b60 100755
--- a/say.c
+++ b/say.c
@@ -377,7 +377,7 @@ int ast_say_phonetic_str_full(struct ast_channel *chan, char *fn2, char *ints, c
default: /* '9' falls here... */
ltr = fn2[num];
if ('A' <= ltr && ltr <= 'Z') ltr += 'a' - 'A'; /* file names are all lower-case */
- snprintf(fn, sizeof(fn), "phonetic/%c", ltr);
+ snprintf(fn, sizeof(fn), "phonetic/%c_p", ltr);
}
/* snprintf(fn, sizeof(fn), "digits/%c", fn2[num]); */
res = ast_streamfile(chan, fn, lang);