Fixed facility_conf parameters check.

This commit is contained in:
MelwareDE 2005-09-17 18:58:34 +00:00
parent d73253a545
commit 0568f2278c
1 changed files with 2 additions and 2 deletions

View File

@ -3179,7 +3179,7 @@ static void capi_handle_facility_confirmation(_cmsg *CMSG, unsigned int PLCI, un
(FACILITY_CONF_FACILITYCONFIRMATIONPARAMETER(CMSG)[5] != 0x0)) {
ast_log(LOG_ERROR, "%s: unable to start line interconnect\n",
i->name);
show_capi_info(read_capi_word(&FACILITY_IND_FACILITYINDICATIONPARAMETER(CMSG)[4]));
show_capi_info(read_capi_word(&FACILITY_CONF_FACILITYCONFIRMATIONPARAMETER(CMSG)[4]));
}
} else {
/* disable */
@ -3188,7 +3188,7 @@ static void capi_handle_facility_confirmation(_cmsg *CMSG, unsigned int PLCI, un
ast_log(LOG_ERROR, "%s: unable to stop line interconnect\n",
i->name);
}
show_capi_info(read_capi_word(&FACILITY_IND_FACILITYINDICATIONPARAMETER(CMSG)[4]));
show_capi_info(read_capi_word(&FACILITY_CONF_FACILITYCONFIRMATIONPARAMETER(CMSG)[4]));
}
return;
}