Index: say.c =================================================================== RCS file: /usr/cvsroot/asterisk/say.c,v retrieving revision 1.52 diff -u -r1.52 say.c --- say.c 27 Mar 2005 22:07:39 -0000 1.52 +++ say.c 1 Apr 2005 21:36:15 -0000 @@ -3721,8 +3721,10 @@ /* I'm not going to handle 1900 and prior */ /* We'll just be silent on the year, instead of bombing out. */ } else { - res = wait_file(chan,ints, "digits/19",lang); + res = wait_file(chan,ints, "digits/thousand",lang); if (!res) { + wait_file(chan,ints, "digits/9",lang); + wait_file(chan,ints, "digits/hundred",lang); res = ast_say_number(chan, tm.tm_year, ints, lang, (char * ) NULL); } }