From: Mark Spencer Date: Sat, 29 Jan 2005 17:35:12 +0000 (+0000) Subject: Fix ordering in portugese (bug #3452) X-Git-Tag: 1.2.0-beta1~1302 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aeb1002057ff423fbde9c3f2f4ab818a50726ebe;p=thirdparty%2Fasterisk.git Fix ordering in portugese (bug #3452) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4919 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/say.c b/say.c index bf862d142e..cc1e7f597d 100755 --- a/say.c +++ b/say.c @@ -1957,11 +1957,6 @@ static int ast_say_number_full_pt(struct ast_channel *chan, int num, const char 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 @@ static int ast_say_number_full_pt(struct ast_channel *chan, int num, const char } ast_stopstream(chan); } + if (!res && playh) { + res = wait_file(chan, ints, "digits/pt-e", language); + ast_stopstream(chan); + playh = 0; + } } return res; }