remove unused variable

This commit is contained in:
Andre Puschmann 2018-11-28 16:17:36 +01:00
parent 2acf282a8b
commit 8ca73b9c4e
1 changed files with 1 additions and 4 deletions

View File

@ -237,8 +237,6 @@ void pdcp_entity::integrity_generate( uint8_t *msg,
uint32_t msg_len,
uint8_t *mac)
{
uint8_t bearer;
switch(integ_algo)
{
case INTEGRITY_ALGORITHM_ID_EIA0:
@ -316,8 +314,7 @@ bool pdcp_entity::integrity_verify(uint8_t *msg,
}
}
if (isValid){
log->info_hex(mac_exp, 4, "MAC match (expected)");
log->info_hex(mac, 4, "MAC match (found)");
log->info_hex(mac_exp, 4, "MAC match");
}
break;
default: