Make ringing clearer

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3391 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-07-08 09:20:14 +00:00
parent 91a7960ad5
commit 851fce9568

View File

@@ -308,9 +308,9 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
case AST_CONTROL_RINGING:
if (option_verbose > 2)
ast_verbose( VERBOSE_PREFIX_3 "%s is ringing\n", o->chan->name);
if (!*sentringing && !outgoing->musiconhold) {
if (!(*sentringing) && !outgoing->musiconhold) {
ast_indicate(in, AST_CONTROL_RINGING);
*sentringing++;
(*sentringing)++;
}
break;
case AST_CONTROL_PROGRESS:
@@ -326,7 +326,7 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
if (option_verbose > 2)
ast_verbose( VERBOSE_PREFIX_3 "%s stopped sounds\n", o->chan->name);
ast_indicate(in, -1);
*sentringing = 0;
(*sentringing) = 0;
}
break;
default: