aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-15 14:12:45 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-15 14:12:45 +0000
commitb3a8934e2025251ea8490ff58822259b749e22ad (patch)
tree0086552bb8e756d1607365c86acbcdfb914f91c2 /channel.c
parent3ebb6177f449491aa1c62a0fd01ba298e9ca68f6 (diff)
Use file that is in Asterisk rather than asterisk-sounds (bug #2445)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3783 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channel.c b/channel.c
index 5c5d8e6d2..2f6f28d7f 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 {