Fix debug output

Previously frame number was not saved in case of PRIM_TCH rendering many
debug statements with g_time useless.

Copy-paste from ef30f50d5d.

Change-Id: I952b39458d921622d5964cbdcc2f4e45ff9ea951
This commit is contained in:
Max 2016-06-13 11:43:43 +02:00 committed by Harald Welte
parent 45e97ac59a
commit 9302abe054
1 changed files with 1 additions and 0 deletions

View File

@ -467,6 +467,7 @@ int l1if_tch_rx(struct gsm_bts_trx *trx, uint8_t chan_nr, struct msgb *l1p_msg)
l1sap = msgb_l1sap_prim(rmsg);
osmo_prim_init(&l1sap->oph, SAP_GSM_PH, PRIM_TCH, PRIM_OP_INDICATION, rmsg);
l1sap->u.tch.chan_nr = chan_nr;
l1sap->u.tch.fn = data_ind->u32Fn;
return l1sap_up(trx, l1sap);
}