Skip to content
Snippets Groups Projects
Commit c608e970 authored by Mark Spencer's avatar Mark Spencer
Browse files

Do not send progress when "ringing" only flag is set (bug #2553)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3934 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent d8cfe78b
Branches
Tags
No related merge requests found
...@@ -343,7 +343,8 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu ...@@ -343,7 +343,8 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
case AST_CONTROL_PROGRESS: case AST_CONTROL_PROGRESS:
if (option_verbose > 2) if (option_verbose > 2)
ast_verbose ( VERBOSE_PREFIX_3 "%s is making progress passing it to %s\n", o->chan->name,in->name); ast_verbose ( VERBOSE_PREFIX_3 "%s is making progress passing it to %s\n", o->chan->name,in->name);
ast_indicate(in, AST_CONTROL_PROGRESS); if (!outgoing->ringbackonly)
ast_indicate(in, AST_CONTROL_PROGRESS);
break; break;
case AST_CONTROL_OFFHOOK: case AST_CONTROL_OFFHOOK:
/* Ignore going off hook */ /* Ignore going off hook */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment