summaryrefslogtreecommitdiff
path: root/channels/misdn
diff options
context:
space:
mode:
authorChristian Richter <christian.richter@beronet.com>2006-07-03 16:47:28 +0000
committerChristian Richter <christian.richter@beronet.com>2006-07-03 16:47:28 +0000
commit5da284815891e6de7cc31efe540393de2fc86366 (patch)
tree36fd373f2ed95894517497ae6522d5c641b8cb24 /channels/misdn
parentf629ae18724cb4148a9fa0679a51aac7d8dfd3ab (diff)
removed our own tone creation from misdn_indicate, we just return -1. Now we get a lot fewer blocked in thread blah warnings..
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@36867 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/misdn')
-rw-r--r--channels/misdn/isdn_lib.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/channels/misdn/isdn_lib.c b/channels/misdn/isdn_lib.c
index 39ec08e52..f45f67052 100644
--- a/channels/misdn/isdn_lib.c
+++ b/channels/misdn/isdn_lib.c
@@ -1878,7 +1878,9 @@ handle_event_nt(void *dat, void *arg)
}
else cb_log(-1, stack->port, "Couldnt find BC so I couldnt remove the Process!!!! this is a bad port.\n");
- handle_cr(stack, &frm);
+ if (handle_cr(stack, &frm)<0) {
+ }
+
free_msg(msg);
return 0 ;
}