From 436a8474b08cec283c38c81e7c40ad9569c3f006 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 24 Jun 2005 17:19:26 +0000 Subject: [PATCH] '9' doesn't fall there anymore ... git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6001 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- say.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/say.c b/say.c index b2fbe68c7d..80aad6e036 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");