dect
/
asterisk
Archived
13
0
Fork 0

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

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@171793 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mattf 2009-01-27 23:28:51 +00:00
parent 904a944798
commit 50319cf4f9
1 changed files with 5 additions and 2 deletions

View File

@ -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",