From: Russell Bryant Date: Wed, 1 Jun 2005 20:56:18 +0000 (+0000) Subject: fix SayUnixTime (bug #4423) X-Git-Tag: 1.0.11.1~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b3cfb26b40c9023c0e89d7e5ed9b649a4c44e9e;p=thirdparty%2Fasterisk.git fix SayUnixTime (bug #4423) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5808 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/say.c b/say.c index 0b363e2afa..0a8aa7680b 100755 --- a/say.c +++ b/say.c @@ -1990,7 +1990,7 @@ int ast_say_date_with_format_en(struct ast_channel *chan, time_t time, char *int /* Between 21 and 29 - two sounds */ res = wait_file(chan,ints, "digits/20",lang); if (!res) { - snprintf(nextmsg,sizeof(nextmsg), "digits/%d", tm.tm_mday - 20); + snprintf(nextmsg,sizeof(nextmsg), "digits/h-%d", tm.tm_mday - 20); res = wait_file(chan,ints,nextmsg,lang); } }