mISDNcapid: release B3 link properly when using CAPIFLAG_HIGHJACKING

Until now, B3ReleaseLink() did not care about BType_tty B3 links. This commit
makes them behave like BType_Direct links.

Signed-off-by: Christoph Schulz <develop@kristov.de>
This commit is contained in:
Christoph Schulz 2017-02-09 06:49:08 +01:00
parent 1acabc5db3
commit be0f62c087
1 changed files with 1 additions and 0 deletions

View File

@ -2089,6 +2089,7 @@ void B3ReleaseLink(struct lPLCI *lp, struct BInstance *bi)
{
switch(bi->type) {
case BType_Direct:
case BType_tty:
ncciReleaseLink(bi->b3data);
break;
#ifdef USE_SOFTFAX