aboutsummaryrefslogtreecommitdiffstats
path: root/say.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-01 20:56:18 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-01 20:56:18 +0000
commit9da13ebdfc79f0e23762b8d7d08d5ef3486c228b (patch)
treeec8dbeadc99bfcf3215f892ef1fc695414c0e5b0 /say.c
parente5b2f7e92abaa05c4bea28ab639f3d1e9f42a585 (diff)
fix SayUnixTime (bug #4423)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/v1-0@5808 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'say.c')
-rwxr-xr-xsay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/say.c b/say.c
index 0b363e2af..0a8aa7680 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);
}
}