fixing PDCP call in TTCN3 SS

this fixes an issue introduced in 6ec573987a
This commit is contained in:
Andre Puschmann 2020-01-07 11:05:20 +01:00
parent 4d9a092bb4
commit bc6aa1a166
1 changed files with 1 additions and 1 deletions

View File

@ -747,7 +747,7 @@ public:
// push to PDCP and create DL grant for it
log.info("Writing PDU (%d B) to LCID=%d\n", pdu->N_bytes, lcid);
pdcp.write_sdu(lcid, std::move(pdu));
pdcp.write_sdu(lcid, std::move(pdu), true);
}
void add_pch_pdu(unique_byte_buffer_t pdu)