[Asterisk-cvs] asterisk say.c,1.48,1.49
markster at lists.digium.com
markster at lists.digium.com
Sat Jan 29 11:33:35 CST 2005
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv25129
Modified Files:
say.c
Log Message:
Fix ordering in portugese (bug #3452)
Index: say.c
===================================================================
RCS file: /usr/cvsroot/asterisk/say.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- say.c 15 Jan 2005 23:48:11 -0000 1.48
+++ say.c 29 Jan 2005 17:35:12 -0000 1.49
@@ -1957,11 +1957,6 @@
playh = 1;
num = num % 1000000;
}
- if (!res && playh) {
- res = wait_file(chan, ints, "digits/pt-e", language);
- ast_stopstream(chan);
- playh = 0;
- }
if (!res) {
if (!ast_streamfile(chan, fn, language)) {
if ((audiofd > -1) && (ctrlfd > -1))
@@ -1971,6 +1966,11 @@
}
ast_stopstream(chan);
}
+ if (!res && playh) {
+ res = wait_file(chan, ints, "digits/pt-e", language);
+ ast_stopstream(chan);
+ playh = 0;
+ }
}
return res;
}
More information about the svn-commits
mailing list