Index: say.c =================================================================== RCS file: /usr/cvsroot/asterisk/say.c,v retrieving revision 1.48 diff -u -r1.48 say.c --- say.c 15 Jan 2005 23:48:11 -0000 1.48 +++ say.c 22 Feb 2005 20:03:21 -0000 @@ -3112,20 +3112,7 @@ case 'H': case 'k': /* 24-Hour */ - res = ast_say_number(chan, -tm.tm_hour, ints, lang, NULL); - if (!res) { - if (tm.tm_hour != 0) { - int remainder = tm.tm_hour; - if (tm.tm_hour > 20) { - res = wait_file(chan,ints, "digits/20",lang); - remainder -= 20; - } - if (!res) { - snprintf(nextmsg,sizeof(nextmsg), "digits/%d", remainder); - res = wait_file(chan,ints,nextmsg,lang); - } - } - } + res = ast_say_number(chan, tm.tm_hour, ints, lang, NULL); break; case 'M': /* Minute */