From bc6aa1a1665469f989a98f02cbdbed53a00a55c0 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Tue, 7 Jan 2020 11:05:20 +0100 Subject: [PATCH] fixing PDCP call in TTCN3 SS this fixes an issue introduced in 6ec573987a4436c4de5978d1be12bd637eeab64d --- srsue/test/ttcn3/hdr/ttcn3_syssim.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsue/test/ttcn3/hdr/ttcn3_syssim.h b/srsue/test/ttcn3/hdr/ttcn3_syssim.h index 37dac4a7a..44761d1e2 100644 --- a/srsue/test/ttcn3/hdr/ttcn3_syssim.h +++ b/srsue/test/ttcn3/hdr/ttcn3_syssim.h @@ -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)