--- say.c.orig 2006-06-17 03:19:27.000000000 +0200 +++ say.c 2006-06-17 03:24:28.520233000 +0200 @@ -4698,7 +4698,11 @@ case 'e': /* First - Thirtyfirst */ remainder = tm.tm_mday; - if (tm.tm_mday > 20) { + if (tm.tm_mday > 30) { + res = wait_file(chan, ints, "digits/h-30", lang); + remainder -= 30; + } + if (tm.tm_mday > 20 && tm.tm_mday < 30) { res = wait_file(chan, ints, "digits/h-20", lang); remainder -= 20; }