aboutsummaryrefslogtreecommitdiffstats
path: root/say.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-24 17:19:26 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-24 17:19:26 +0000
commit66c6a257d104cdcc7641dd9f9cdd545141351b0b (patch)
treefafa2e8ba278fd14afd41c349e5732a8c6326843 /say.c
parent08b4defddd3b05d44418bbe426b58745b7fa7f76 (diff)
'9' doesn't fall there anymore ...
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6001 f38db490-d61c-443f-a65b-d21fe96a405b
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 b2fbe68c7..80aad6e03 100755
--- a/say.c
+++ b/say.c
@@ -100,7 +100,7 @@ int ast_say_character_str_full(struct ast_channel *chan, const char *str, const
fnbuf[7] = str[num];
fn = fnbuf;
break;
- default: /* '9' falls here... */
+ default:
ltr = str[num];
if ('A' <= ltr && ltr <= 'Z') ltr += 'a' - 'A'; /* file names are all lower-case */
strcpy(fnbuf, "letters/X");