[Asterisk-cvs] asterisk channel.c,1.138,1.139
markster at lists.digium.com
markster at lists.digium.com
Wed Sep 15 10:11:16 CDT 2004
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv26721
Modified Files:
channel.c
Log Message:
Use file that is in Asterisk rather than asterisk-sounds (bug #2445)
Index: channel.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channel.c,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -d -r1.138 -r1.139
--- channel.c 4 Sep 2004 01:06:42 -0000 1.138
+++ channel.c 15 Sep 2004 14:12:45 -0000 1.139
@@ -2478,12 +2478,12 @@
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 {
More information about the svn-commits
mailing list