From: Mark Spencer Date: Wed, 15 Sep 2004 14:12:45 +0000 (+0000) Subject: Use file that is in Asterisk rather than asterisk-sounds (bug #2445) X-Git-Tag: 1.0.0~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4aa1dadbd254165c43e484dfb4632034de07792;p=thirdparty%2Fasterisk.git Use file that is in Asterisk rather than asterisk-sounds (bug #2445) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3783 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channel.c b/channel.c index 5c5d8e6d28..2f6f28d7f4 100755 --- a/channel.c +++ b/channel.c @@ -2478,12 +2478,12 @@ static void bridge_playfile(struct ast_channel *chan, struct ast_channel *peer, res = ast_waitstream(chan, ""); if (min) { res = ast_say_number(chan, min, AST_DIGIT_ANY, chan->language, (char *) NULL); - res = ast_streamfile(chan, "minutes", chan->language); + res = ast_streamfile(chan, "queue-minutes", chan->language); res = ast_waitstream(chan, ""); } if (sec) { res = ast_say_number(chan, sec, AST_DIGIT_ANY, chan->language, (char *) NULL); - res = ast_streamfile(chan, "seconds", chan->language); + res = ast_streamfile(chan, "queue-seconds", chan->language); res = ast_waitstream(chan, ""); } } else {