aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-08 02:09:56 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-08 02:09:56 +0000
commitdc78d4f08bc0f58a5bc432b7040f4404fa7e8b07 (patch)
tree95e56e27391a09cd1bb06b02b376c055768ff0e7 /channel.c
parent3f5a39801a266b7d7dfdb0b3385916fe5735eb3c (diff)
Don't complain about not knowing about -1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2366 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index a56dfd91e..fac138580 100755
--- a/channel.c
+++ b/channel.c
@@ -1576,6 +1576,8 @@ struct ast_channel *__ast_request_and_dial(char *type, int format, void *data, i
state = f->subclass;
ast_frfree(f);
break;
+ } else if (f->subclass == -1) {
+ /* Ignore -- just stopping indications */
} else {
ast_log(LOG_NOTICE, "Don't know what to do with control frame %d\n", f->subclass);
}