mobile: Do not print MDL-Error 'ignoring' and then aborting anyway.

The current code mentioned it will ignore the MDL-Error and then
printed it will abort. Only print the abortion message and print
the RSL error name.
This commit is contained in:
Holger Hans Peter Freyther 2012-11-26 19:53:41 +01:00
parent 2076448d45
commit 6c4196e3ef
1 changed files with 2 additions and 10 deletions

View File

@ -5003,16 +5003,8 @@ static int gsm48_rr_mdl_error_ind(struct osmocom_ms *ms, struct msgb *msg)
uint8_t cause = rllh->data[2];
uint8_t link_id = rllh->link_id;
switch (cause) {
case RLL_CAUSE_SEQ_ERR:
case RLL_CAUSE_UNSOL_DM_RESP_MF:
break;
default:
LOGP(DRR, LOGL_NOTICE, "MDL-Error (cause %d) ignoring\n",
cause);
}
LOGP(DRR, LOGL_NOTICE, "MDL-Error (cause %d) aborting\n", cause);
LOGP(DRR, LOGL_NOTICE, "MDL-Error (cause %s/%d) aborting\n",
rsl_err_name(cause), cause);
/* disconnect the (main) signalling link */
nmsg = gsm48_l3_msgb_alloc();