Corrected check for Info value on CONNECT_B3_CONF

This commit is contained in:
MelwareDE 2009-09-17 18:12:02 +00:00
parent 8e476958b0
commit 675bf55412
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
CHANGES
=======
HEAD
------------------
- corrected check for Info value on CONNECT_B3_CONF
chan_capi-1.1.4
------------------
- use extended fax if available only and have fine resolution on receive activated by default

View File

@ -5127,7 +5127,7 @@ static void capidev_handle_msg(_cmsg *CMSG)
case CAPI_P_CONF(CONNECT_B3):
wInfo = CONNECT_B3_CONF_INFO(CMSG);
if(i == NULL) break;
if (wInfo == 0) {
if ((wInfo & 0xff00) == 0) {
i->NCCI = NCCI;
if (i->channeltype != CAPI_CHANNELTYPE_NULL) {
capi_controllers[i->controller]->nfreebchannels--;