From 851fce9568360c6e4297f4df31343dbbe837bdea Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Thu, 8 Jul 2004 09:20:14 +0000 Subject: Make ringing clearer git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3391 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_dial.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/app_dial.c') diff --git a/apps/app_dial.c b/apps/app_dial.c index dfb1a3e8e..0c887a7aa 100755 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -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: -- cgit v1.2.3