Commit 483cefbf authored by winckel's avatar winckel

Fixed a false error detection.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5014 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 48fd4ea8
......@@ -2817,10 +2817,9 @@ int rrc_eNB_decode_dcch (u8 Mod_id, u32 frame, u8 Srb_id, u8 UE_index,
UL_DCCH_Message_t *ul_dcch_msg = NULL; //&uldcchmsg;
UE_EUTRA_Capability_t *UE_EUTRA_Capability = NULL;
if (Srb_id != 1)
if ((Srb_id != 1) && (Srb_id != 2))
{
LOG_E (RRC,
"[eNB %d] Frame %d: Received message on SRB%d, should not have ...\n",
LOG_E (RRC, "[eNB %d] Frame %d: Received message on SRB%d, should not have ...\n",
Mod_id, frame, Srb_id);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment