Don't complain about lack of D-channels on PTMP connections

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@171793 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.2
Matthew Fredrickson 17 years ago
parent abf70664ab
commit 7a69506727

@ -3155,8 +3155,11 @@ static int pri_find_dchan(struct dahdi_pri *pri)
}
if (newslot < 0) {
newslot = 0;
ast_log(LOG_WARNING, "No D-channels available! Using Primary channel %d as D-channel anyway!\n",
pri->dchannels[newslot]);
/* This is annoying to see on non persistent layer 2 connections. Let's not complain in that case */
if (pri->sig != SIG_BRI_PTMP) {
ast_log(LOG_WARNING, "No D-channels available! Using Primary channel %d as D-channel anyway!\n",
pri->dchannels[newslot]);
}
}
if (old && (oldslot != newslot))
ast_log(LOG_NOTICE, "Switching from from d-channel %d to channel %d!\n",

Loading…
Cancel
Save