summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2009-01-22 23:23:22 +0000
committerMatthew Fredrickson <creslin@digium.com>2009-01-22 23:23:22 +0000
commit55fd5f2d2d32b9831c3ed49f333ac8f1bd652c7d (patch)
treedca3479ff1133f43617db29799d5881d72e7fa7e /channels
parent79eb245962f6a2d86feda18db20c84e7af7271e5 (diff)
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
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_dahdi.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 22d43e98b..631694261 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -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;
+ }
}
}
}