fixed bug in LteEnbRrc about when to use RLC AM for a DRB

This commit is contained in:
Nicola Baldo
2013-03-18 18:30:23 +01:00
parent 764063bcfb
commit 4cd736f4b3

View File

@@ -382,7 +382,7 @@ UeManager::SetupDataRadioBearer (EpsBearer bearer, uint8_t bearerId, uint32_t gt
lcinfo.gbrDl = bearer.gbrQosInfo.gbrDl;
m_rrc->m_cmacSapProvider->AddLc (lcinfo, rlc->GetLteMacSapUser ());
if (drbInfo->m_rlc->GetTypeId () == LteRlcAm::GetTypeId ())
if (rlcTypeId == LteRlcAm::GetTypeId ())
{
drbInfo->m_rlcConfig.choice = LteRrcSap::RlcConfig::AM;
}