don't play any sounds when using the quiet option (bug #4348)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5774 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2005-05-26 16:05:07 +00:00
parent 2cd9d4c676
commit dc21f68a95
1 changed files with 9 additions and 7 deletions

View File

@ -712,13 +712,15 @@ static int chanspy_exec(struct ast_channel *chan, void *data)
}
for(;;) {
res = ast_streamfile(chan, "beep", chan->language);
if (!res)
res = ast_waitstream(chan, "");
if (res < 0) {
ast_clear_flag(chan, AST_FLAG_SPYING);
break;
}
if (!silent) {
res = ast_streamfile(chan, "beep", chan->language);
if (!res)
res = ast_waitstream(chan, "");
if (res < 0) {
ast_clear_flag(chan, AST_FLAG_SPYING);
break;
}
}
count = 0;
res = ast_waitfordigit(chan, waitms);