Make sure we don't set the channel to be inalarm for a D-channel drop on PTMP connections

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@170351 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.2
Matthew Fredrickson 17 years ago
parent 79eb245962
commit 55fd5f2d2d

@ -10981,7 +10981,11 @@ static void *pri_dchannel(void *vpri)
} else if (p->owner)
p->owner->_softhangup |= AST_SOFTHANGUP_DEV;
}
p->inalarm = 1;
/* For PTMP connections with non persistent layer 2 we want
* to *not* declare inalarm unless there actually is an alarm */
if (p->sig != SIG_BRI_PTMP) {
p->inalarm = 1;
}
}
}
}

Loading…
Cancel
Save