aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-30 19:41:52 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-30 19:41:52 +0000
commita7e84797154fc5dfe2977b87c051d8bc2c214f95 (patch)
tree10dc64f28c81f7c7599c51a674b84a281d799f46 /channel.c
parent9de104687d4a9dfbd607500c0bba3d3fe9bfb086 (diff)
Don't print a message indicating that we don't know what to do with a proceeding
control frame in ast_request_and_dial(). We just need to ignore it. (reported by JerJer on #asterisk-dev) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@52954 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 2a22bed3c..577d0c799 100644
--- a/channel.c
+++ b/channel.c
@@ -2476,7 +2476,7 @@ struct ast_channel *__ast_request_and_dial(const char *type, int format, void *d
state = f->subclass;
ast_frfree(f);
break;
- } else if (f->subclass == AST_CONTROL_PROGRESS) {
+ } else if (f->subclass == AST_CONTROL_PROGRESS || f->subclass == AST_CONTROL_PROCEEDING) {
/* Ignore */
} else if (f->subclass == -1) {
/* Ignore -- just stopping indications */